Bill To
{{ $invoice->customer_name }}
{{ $invoice->customer_address }}
GST: {{ $invoice->customer_gst ?? '-' }}
Email: {{ $invoice->customer_email }}
Phone: {{ $invoice->customer_mobile }}
| Description |
Qty |
Rate (₹) |
Amount (₹) |
@foreach($invoice->items as $item)
| {{ $item->description }} |
{{ $item->qty }} |
{{ number_format($item->price, 0) }} |
{{ number_format($item->ttl_amount, 0) }} |
@endforeach
| Subtotal: |
{{ number_format($invoice->subtotal, 0) }} |
| GST ({{ $invoice->gst_percent }}%): |
{{ number_format($invoice->gst_amount, 0) }} |
| Total: |
{{ number_format($invoice->final_amount_with_gst, 0) }} |
Payment Method: {{ $invoice->payment_method ?? 'Bank Transfer' }}
Reference Number: {{ $invoice->reference_no ?? "REF123456789" }}