{{ $sale->branch->name }}
@if($sale->branch->location){{ $sale->branch->location }}
@endifTel: {{ $sale->branch->phone ?? 'N/A' }}
Receipt #: {{ $sale->receipt_number }}
Date: {{ $sale->created_at->format('d M Y, h:i A') }}
Staff: {{ $sale->seller->name }}
@if($sale->customer_name)Customer: {{ $sale->customer_name }}
@endif| Item | Qty | Price | Total |
|---|---|---|---|
| {{ $item->product->name }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->total_price, 2) }} |