Order# ET{{ $order->id }}
Sender Details
@if (isset($order->user))
Name: {{ $order->user->name }}
Phone: {{ $order->user->phone }}
Email: {{ $order->user->email }}
Country: {{ $order->user->country->name }}
Address: {{ $order->user->address }}
@endif Paid Via: {{ App\Models\BankAccount::where('id', $order->payment_bank_id)->value('bank_name') }}, {{ $order->total }}
@if (isset($order->user_wallet)) Paid Via: User Wallet, {{ $order->user_wallet }}
@endif Trx ID: {{ $order->trx_id }}
Phone: {{ $order->user->phone }}
Email: {{ $order->user->email }}
Country: {{ $order->user->country->name }}
Address: {{ $order->user->address }}
@endif Paid Via: {{ App\Models\BankAccount::where('id', $order->payment_bank_id)->value('bank_name') }}, {{ $order->total }}
@if (isset($order->user_wallet)) Paid Via: User Wallet, {{ $order->user_wallet }}
@endif Trx ID: {{ $order->trx_id }}
Visa Detail
@php
$visa = App\Models\VisaCategory::where('id', $order->visa_category_id)->first();
$country = App\Models\Country::where('id', $order->country_id)->first();
@endphp
Visa: {{ $visa->name }}
Visa Country: {{ $country->name }}
@if ($order->applicant_name || $order->passport_number || $order->contact_number || $order->relation) Visa For: {{ $order->applicant_name }}
Passport: {{ $order->passport_number }}
Contact Number: {{ $order->contact_number }}
Relation: {{ $order->relation }}
@endif
Visa Country: {{ $country->name }}
@if ($order->applicant_name || $order->passport_number || $order->contact_number || $order->relation) Visa For: {{ $order->applicant_name }}
Passport: {{ $order->passport_number }}
Contact Number: {{ $order->contact_number }}
Relation: {{ $order->relation }}
@endif
Receipt
Approval
@if ($order->visa_approval)
@endif
| Approval | Action |
|---|---|
| {{ $order->visa_approval }} |
Document Detail
| # | Label | File |
|---|---|---|
| {{ $key + 1 }} | {{ $file->label }} | {{ $file->file }} |
Update Edit
@if ($order->is_edit)
@endif
| Edit | Description | Action |
|---|---|---|
| {{ $order->is_edit == 1 ? 'Yes' : 'No' }} | {!! $order->edit_description !!} |