@if(\App\Services\ManualPaymentService::isManual($order->payment_method) || $order->payment_status === 'pending_verification') @php $channel = \App\Services\ManualPaymentService::channelFromMethod($order->payment_method); $accounts = \App\Services\ManualPaymentService::accounts(); $account = $channel ? ($accounts[$channel] ?? []) : []; @endphp
| Method | {{ \App\Services\ManualPaymentService::label($order->payment_method) }} |
| Advance Amount | ৳{{ number_format($order->advance_amount ?: $order->payableAmount()) }} |
| Due on Delivery | ৳{{ number_format($order->due_amount) }} |
| Status | @if($order->payment_status === 'pending_verification') Pending Verification @elseif($order->payment_status === 'paid' || $order->payment_status === 'partial') Verified @elseif($order->payment_status === 'rejected') Rejected @else {{ strtoupper($order->payment_status ?? 'pending') }} @endif |
| Trx ID | {{ $order->payment_transaction }} |
| Customer Note | {{ $order->payment_submission_note }} |