Create Application

@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Applicant Information

Start with inquiry details and adjust anything before saving.

Select Service

Choose one or many services. The right-side amount card updates instantly.

@foreach ($serviceItems as $serviceItem)
serviceItem)->name)))->map(fn($item) => trim($item))->contains($serviceItem->name) ? 'checked' : '' }}>
@endforeach
Visa Fee And Other Fees

Select fees with one click. Every selection updates the summary card immediately.

Visa Fee Options
@forelse ($matchedVisaFees as $visaFee)
visa_fee ? 'checked' : '' }}>
@empty
No visa fee configured for this inquiry.
@endforelse
Additional Fee Options
@forelse ($matchedAdditionalFees as $fee)
@empty
No additional fee configured for this inquiry.
@endforelse
Review And Assign

Finalize workflow, review requirements, and submit the application.

Step, role, and assigned user will be auto detected from the selected service type.
Split Payment Methods
Users can split payment across multiple methods. Example: cash + bkash.
Visa Requirements
@forelse ($matchedRequirements as $requirement) @empty @endforelse
Requirement Type Required Select Option Received Delivery
{{ $requirement->name }} {{ $requirement->type ?: '-' }} {{ strtolower((string) $requirement->required) === 't' ? 'Yes' : 'Optional' }}
index . '.received_doc'))>
index . '.delivery_doc'))>
No visa requirements configured for this inquiry.
Live Amount Summary
Inquiry#{{ $inquery->id }}
Applicant{{ $inquery->name ?: '-' }}
Selected Services{{ old('service_item_name', optional($inquery->serviceItem)->name) ?: '-' }}
Service Charge{{ old('service_charge', optional($inquery->serviceItem)->price) ?: 0 }}
Visa Fee{{ old('visa_fee', 0) ?: 0 }}
Additional Fee{{ old('additional_fee', 0) ?: 0 }}
Other Fee{{ old('other_fee', 0) ?: 0 }}
Insurance{{ old('insurance_fee', 0) ?: 0 }}
Additional Charge{{ old('additional_charge', 0) ?: 0 }}
VAT{{ old('vat', 0) ?: 0 }}
Tax{{ old('tax', 0) ?: 0 }}
Discount{{ old('discount', 0) ?: 0 }}
Payment Methods{{ old('payment_method') ?: '-' }}
Paid Amount0
Payment Info{{ old('payment_bank_name') ?: '-' }}
Total Amount{{ old('total_amount', 0) ?: 0 }}
Inquiry Snapshot
Country{{ optional($inquery->country)->name_en ?: '-' }}
Category{{ optional($inquery->category)->name ?: '-' }}
Travel Date{{ $inquery->travel_date ?: '-' }}
Passport No{{ $inquery->passport_no ?: '-' }}
Applicants{{ $inquery->no_of_applicant ?: '-' }}
@include('layouts.footer')