@extends('layouts.print') @section('title', 'Receipt '.$sale->invoice_number) @section('subtitle', 'Sale Receipt') @section('meta')
| Product | Qty | Unit Price | Line Total |
|---|---|---|---|
| {{ $item->product->name ?? '—' }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->line_total, 2) }} |
| Subtotal | {{ number_format($sale->subtotal, 2) }} | ||
| Discount | {{ number_format($sale->discount_amount, 2) }} | ||
| Grand Total | {{ number_format($sale->grand_total, 2) }} | ||
| Amount Received | {{ number_format($sale->amount_received, 2) }} | ||
| Balance / Change | {{ number_format($sale->balance(), 2) }} | ||
Notes: {{ $sale->notes }}
@endifThank you!
@endsection