Invoice Number: {{ $invoice->invoice_number ?? 'N/A' }}
Invoice Date: {{ $invoice->invoice_date ?? date('Y-m-d', strtotime($invoice->invoice_created_at)) }}
{{ $invoice->seller_name_en ?? 'N/A' }}
Mobile: {{ $invoice->seller_mobile ?? 'N/A' }}
{{ $invoice->buyer_name_en ?? 'N/A' }}
Mobile: {{ $invoice->buyer_mobile ?? 'N/A' }}
| Product | Description | Quantity (kg) | Price per kg | Subtotal |
|---|---|---|---|---|
| {{ $invoice->product_name_en ?? 'N/A' }} | {{ $invoice->product_description_en ?? 'N/A' }} | {{ number_format($invoice->quantity, 2) }} | {{ number_format($invoice->price_per_kg, 2) }} | {{ number_format($invoice->original_price, 2) }} |
Payment Method: {{ $invoice->payment_method }}
@if($invoice->payment_id)Payment ID: {{ $invoice->payment_id }}
@endif