@extends('layouts.app') @section('title', 'Sales Report') @section('content')
| Invoice # | Date | Customer | Subtotal | Discount | GST | Total | Payment |
|---|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->invoice_date->format('d M Y') }} | {{ $invoice->customer->name ?? '—' }} | ₹{{ number_format($invoice->subtotal, 2) }} | ₹{{ number_format($invoice->discount_amount, 2) }} | ₹{{ number_format($invoice->gst_amount, 2) }} | ₹{{ number_format($invoice->total, 2) }} | {{ ucfirst($invoice->payment_type ?? 'cash') }} |
| No sales found for the selected period. | |||||||