D RESTAURANT

Email: dietcateringservices@gmail.com

Viwandani, Dodoma

Phone: 0716780595

Rcpt No: {{ str_pad($sale->id, 6, '0', STR_PAD_LEFT) }}
Waiter: {{ $sale->waiter->username }}
Cashier: {{ $sale->cashier->username ?? '-' }}
Payment: {{ $sale->payment_type }}
Date: {{ $sale->created_at->format('d M Y') }}
Time: {{ $sale->created_at->format('H:i') }}
DETAILS
@foreach($sale->items as $item) @endforeach
{{ $loop->iteration }}. {{ $item->product->product_name }} ({{ $item->quantity }} x {{ number_format($item->product->selling_price, 0) }}) {{ number_format($item->product->selling_price * $item->quantity, 0) }}
Subtotal: {{ number_format($sale->subtotal, 2) }}
VAT(18%): {{ number_format($sale->tax, 2) }}
TOTAL: {{ number_format($sale->total, 2) }}