# | Product Name | Quantity | Unit Price | Total |
---|---|---|---|---|
{{ $index + 1 }} |
{{ $item->product->name ?? 'Product Unavailable' }}
@if ($item->product && $item->product->sku)
SKU: {{ $item->product->sku }} @endif |
{{ $item->quantity }} | {{ number_format($item->price, 2) }} {{ $config->currancy }} | {{ number_format($item->total ?? $item->quantity * $item->price, 2) }} {{ $config->currancy }} |
Grand Total: | {{ number_format($order->total_amount, 2) }} {{ $config->currancy }} |