{{ $invoice->buyer_name_en ?? 'N/A' }}
{{ $invoice->buyer_mobile && $invoice->buyer_country_code ? $invoice->buyer_country_code . ' ' . $invoice->buyer_mobile : ($invoice->buyer_mobile ?? 'N/A') }}
{{ $invoice->seller_name_en ?? 'N/A' }}
{{ $invoice->seller_mobile && $invoice->seller_country_code ? $invoice->seller_country_code . ' ' . $invoice->seller_mobile : ($invoice->seller_mobile ?? 'N/A') }}
| Item | Original Price | Final Price | Quantity | Total |
|---|---|---|---|---|
| {{ $invoice->product_name_en ?? 'N/A' }} | {{ number_format($invoice->original_price, 2) }} MRU | {{ number_format($invoice->final_price, 2) }} MRU | {{ number_format($invoice->quantity, 2) }} kg | {{ number_format($lineTotal, 2) }} MRU |
Payment Status: Pending - Payment Not Completed
Payment method: To be determined
@elsePayment method: {{ $payment_method }}
@if(isset($payment_status)) @php $statusMap = [ 1 => 'Pending', 2 => 'Completed', 3 => 'Failed' ]; $statusText = $statusMap[$payment_status] ?? 'Unknown'; $statusColor = $payment_status == 2 ? '#4CAF50' : ($payment_status == 3 ? '#f44336' : '#ff9800'); @endphpPayment Status: {{ $statusText }}
@endif @endifNote: Thank you for choosing us!