Lead Time Selection


Application Processing Lead Time

Since there is a demand for urgent approval, the processing lead time can now be chosen between Normal Lane, Fast Lane or Super-Fast Lane. Your current application is eligible for the lead time options below:
    @foreach ($pricingSchemes as $pricing) @php if ($pricing->application_type == \App\Models\PricingScheme::TYPE_SERVICE) { $charge = $pricing->charges->first(); } else { $charge = $pricing->charges ->where('min', '<=', $application->items->count()) ->where('max', '>=', $application->items->count()) ->first(); } $total = ($charge?->lane_amount ?? 0) + ($charge?->amount ?? 0); @endphp
    payment?->pricing_id) == $pricing->id)>

    @endforeach

Notes for {{ ucfirst($application->type) }} Application:

  1. Processing times begin from the date complete documents are received.
  2. Applications submitted before 2 PM on a working day will be processed the same day. Submissions after 2 PM will be processed the next working day.
  3. @if ($application->type == \App\Models\Application::TYPE_SERVICE)
  4. Fast Lane is available only for applications where the criteria are pre-recognised (auto detected by the system).
  5. @else
  6. Fast Lane and Super-Fast Lane options are available only for Type 1 and Type 3 applications, where criteria are pre-recognized and auto-detected by the system.
  7. Limits for expedited processing:
    • Fast Lane: Up to 30 products
    • Super-Fast Lane: Up to 20 products
    @endif

Notes: All processing days start from the date of receipt of complete documents.