@section('title') Register {{ ucfirst($application->type) }}: {{ $application->type == \App\Models\Application::TYPE_SERVICE ? 'Service' : 'Products' }} @endsection @section('hide_title', true) @include('pages.company.application.partials.stepper', ['currentStep' => 3, 'type' => $application->type])
@if ($application->type == \App\Models\Application::TYPE_SERVICE)

Service Registration

This is the Service Registration tab, where you can view the total number of services you have registered or plan to register.
  • You can add a maximum of 1 service to your current application.
  • If you have similar services, you can group them under the same service registration.
  • If you do not have any more services to register, you can click Save & Proceed to proceed.

To add service, click the Add Service button to proceed.
@else

Product Registration

This is the Product Registration tab, where you can view the total number of products you have registered or plan to register. This page allows you to add more products to your current application. To add product, click the Add Product button to proceed. @endif

Application Number: {{ $application->application_no }}

List of {{ $application->type == \App\Models\Application::TYPE_SERVICE ? 'Service' : 'Products' }}

No. {{ ucfirst($application->type) }} Name Actions


@if ($application->type == \App\Models\Application::TYPE_SERVICE && $application->items->count() == 0) Add Service @elseif ($application->type == \App\Models\Application::TYPE_PRODUCT && $application->items->count() < 50) {{-- Only show the button if the application type is product and the count is less than 50 --}} {{-- If the application type is service, show the add service button --}} Add Product @endif @if ($application->items->count() > 0)
Back
@csrf
@endif
@if ($application->type == \App\Models\Application::TYPE_PRODUCT)

*Number of product registrations per application is limited to 50.
If you need to register more than 50 products, you can submit the remaining products under a separate application.

@endif
@push('scripts') @endpush