Invoices
+ Create Invoice- @foreach($errors->all() as $e)
- {{ $e }} @endforeach
| Invoice # | Customer | Date | Total | Payment | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->customer_name }}@if($inv->customer_email) {{ $inv->customer_email }}@endif |
{{ $inv->invoice_date->format('d M Y') }} | ${{ number_format($inv->total, 2) }} | {{ \App\Models\Invoice::paymentModes()[$inv->payment_mode] ?? $inv->payment_mode }} | {{ ucfirst($inv->status) }} | |
| @if(request()->filled('search') || request()->filled('date_from') || request()->filled('date_to') || request()->filled('status')) No invoices match your filters. @else No invoices found. @endif | ||||||