@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
Manual Advance Payment
@if((float) ($order->due_amount ?? 0) > 0) @endif @if($order->payment_transaction) @endif @if($order->payment_submission_note) @endif
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 }}
@if($order->payment_proof) Payment proof @else

No screenshot uploaded.

@endif
@if($order->payment_status === 'pending_verification')
@csrf
@csrf
@endif
@endif