@extends('layouts.app') @section('title', 'Product Sales') @section('actions') New Sale (POS) @endsection @section('content')
| Invoice | Date | Items | Subtotal | Discount | Grand Total | Received | Actions |
|---|---|---|---|---|---|---|---|
| {{ $sale->invoice_number }} | {{ $sale->sale_date->format('d M Y') }} | {{ $sale->items_count }} | {{ number_format($sale->subtotal, 2) }} | {{ number_format($sale->discount_amount, 2) }} | {{ number_format($sale->grand_total, 2) }} | {{ number_format($sale->amount_received, 2) }} | |
| No sales yet. | |||||||