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 }}
Sent From: {{ $order->send_from_account }}
Purpose of Payment: {{ $purpose->name }}
@endif Total Paid Amount: {{ !empty($sender_bank->bank_name) ? $sender_bank->bank_name : '' }}, {{ number_format($order->total) }} {{ $order->sender_currency }}
@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 }}
Sent From: {{ $order->send_from_account }}
Purpose of Payment: {{ $purpose->name }}
@endif Total Paid Amount: {{ !empty($sender_bank->bank_name) ? $sender_bank->bank_name : '' }}, {{ number_format($order->total) }} {{ $order->sender_currency }}
@if (isset($order->user_wallet)) Paid Via: User Wallet, {{ $order->user_wallet }}
@endif Trx ID: {{ $order->trx_id }}
Receiver Detail
@php
$country = App\Models\Country::where('id', $order->receiver_country)->first();
$bank = App\Models\BankList::where('id', $order->receiver_bank_id)->first();
@endphp
Country: {{ $country->name }}
Bank/E-Wallet: {{ $bank->name }}
Currency: {{ $order->receiver_currency }}
Acct#: {{ $order->receiver_account_number }}
Amount: {{ number_format($order->receive_amount) }}
Name: {{ $order->receiver_name }}
Phone: {{ $order->receiver_phone }}
Address: {{ $order->receiver_address }}
Zip Code: {{ $order->receiver_zipcode }}
Bank/E-Wallet: {{ $bank->name }}
Currency: {{ $order->receiver_currency }}
Acct#: {{ $order->receiver_account_number }}
Amount: {{ number_format($order->receive_amount) }}
Name: {{ $order->receiver_name }}
Phone: {{ $order->receiver_phone }}
Address: {{ $order->receiver_address }}
Zip Code: {{ $order->receiver_zipcode }}
Edit
@if ($order->is_edit)
@else
@endif
| Description | Edit? |
|---|---|
| {{ $order->edit_description }} |