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') }}, {{ number_format($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') }}, {{ number_format($order->total) }}
@if (isset($order->user_wallet)) Paid Via: User Wallet, {{ $order->user_wallet }}
@endif Trx ID: {{ $order->trx_id }}
Legalization Detail
@php
$legalization = App\Models\LegalizationCategory::where('id', $order->legalization_category_id)->first();
$country = App\Models\Country::where('id', $order->country_id)->first();
@endphp
Legalization: {{ $legalization->name }}
Legalization Country: {{ $country->name }}
@if ($order->applicant_name || $order->passport_number || $order->contact_number || $order->relation) Legalization For: {{ $order->applicant_name }}
Passport: {{ $order->passport_number }}
Contact Number: {{ $order->contact_number }}
Relation: {{ $order->relation }}
@endif
Legalization Country: {{ $country->name }}
@if ($order->applicant_name || $order->passport_number || $order->contact_number || $order->relation) Legalization For: {{ $order->applicant_name }}
Passport: {{ $order->passport_number }}
Contact Number: {{ $order->contact_number }}
Relation: {{ $order->relation }}
@endif
Receipt
Approval
@if ($order->legalization_approval)
@endif
| Approval | Action |
|---|---|
| {{ $order->legalization_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 !!} |