Sales & Invoices

Official tax invoices for retail purchases, rentals, and service charges.

New Retail Invoice
Showing {{ $invoices->total() }} total invoices
@if(session()->has('success'))
{{ session('success') }}
@endif
@forelse($invoices as $inv) @empty @endforelse
Invoice # Customer Type Date GST Tax Total Amount Status Actions
@if(!empty($inv->customer->company_name) && $inv->customer->company_name !== $inv->customer->name) {{ $inv->customer->company_name }} {{ $inv->customer->name }} @else {{ $inv->customer->name }} @endif {{ $inv->customer->phone }} @php $custGst = $inv->customer->gstin ?? $inv->customer->tax_number_gstin ?? null; @endphp @if($custGst) GST: {{ $custGst }} @endif {{ str_replace('_', ' ', $inv->invoice_type) }} {{ $inv->invoice_date->format('d M Y') }} ₹{{ number_format($inv->tax_amount, 2) }} ₹{{ number_format($inv->total_amount, 2) }} {{ $inv->status }}
No sales invoices found.
{{ $invoices->links() }}
@if($viewingInvoice) @endif