Name | Qty | Price | Size | Discount | Amount |
---|---|---|---|---|---|
{{ $item->ProductName }} | {{ $item->quantity }} | {{ $item->price }} | {{ strtoupper(substr($item->size, 0, 1)) }} | {{ $item->discount_percentage ?? 0 }}% | {{ number_format($item->total_price, 2, '.', ',') }} |
Sub Total | {{ number_format($subTotalAmt, 2, '.', ',') }} |
Tax | {{ $taxAmount }} |
Deli Fees | {{ number_format($deliveryFee, 2, '.', ',') }} |
Net Amount | {{ $records->first()->paid_amount - $records->first()->change_amount }} |
Paid Amount | {{ $records->first()->paid_amount }} |
Change | {{ $records->first()->change_amount }} |