Application View
{{ session('success') }}
@endif
Application Details
| Tracking No | {{ $application->tracking_no ?? '-' }} |
|---|---|
| Name | {{ $application->name ?? '-' }} |
| Phone | {{ $application->phone ?? '-' }} |
| {{ $application->email ?? '-' }} | |
| Country | {{ $application->country_name ?? '-' }} |
| Category | {{ $application->category_name ?? '-' }} |
| Service | {{ $application->service_item_name ?? '-' }} |
| Total Amount | {{ $application->total_amount ?? 0 }} |
| Payment Method | {{ $application->payment_method ?? '-' }} |
| Current Step | {{ $currentStep?->name ?? ($application->step_id ?? '-') }} |
| Assigned User | {{ $assignedUser?->name ?? ($application->step_user_id ?? '-') }} |
| Status | {{ (string) $application->is_active === '1' ? 'Active' : 'Inactive' }} |
| Note | {{ $application->note ?? '-' }} |
Workflow
Step: {{ $currentStep?->name ?? ($application->step_id ?? '-') }}
Role: {{ $currentRole?->name ?? ($application->step_role_id ?? '-') }}
User: {{ $assignedUser?->name ?? ($application->step_user_id ?? '-') }}