Invoice Details
| Customer Name | {{ $invoice->customer->name ?? 'N/A' }} |
|---|---|
| {{ $invoice->customer->email ?? 'N/A' }} | |
| Phone | {{ $invoice->customer->mobile ?? 'N/A' }} |
| Address | {{ $invoice->customer->address ?? 'N/A' }} |
| Joined On | {{ $invoice->customer->created_at->format('d M Y') ?? 'N/A' }} |
| Store | {{ $invoice->store->store ?? 'N/A' }} |
|---|---|
| Category | {{ $invoice->category->category ?? 'N/A' }} |
| Frame Brand | {{ $invoice->brand->brand ?? 'N/A' }} |
| Frame Type | {{ $invoice->frame->frame ?? 'N/A' }} |
| Lens Brand | {{ $invoice->lensBrand->brand ?? 'N/A' }} |
| Lens Type | {{ $invoice->lens->lens ?? 'N/A' }} |
| Ordered Date | {{ $invoice->created_at->format('d M Y') ?? 'N/A' }} |
| RE Sphere | {{ $invoice->re_sphere ?? 'N/A' }} |
|---|---|
| RE Cylinder | {{ $invoice->re_cylinder ?? 'N/A' }} |
| RE Axis | {{ $invoice->re_axis ?? 'N/A' }} |
| RE ADD | {{ $invoice->re_add ?? 'N/A' }} |
| LE Sphere | {{ $invoice->le_sphere ?? 'N/A' }} |
| LE Cylinder | {{ $invoice->le_cylinder ?? 'N/A' }} |
| LE Axis | {{ $invoice->le_axis ?? 'N/A' }} |
| LE ADD | {{ $invoice->le_add ?? 'N/A' }} |
| Frame Cost | {{ $invoice->frame_cost ?? 'N/A' }} |
|---|---|
| Lens Cost | {{ $invoice->lens_cost ?? 'N/A' }} |
| Sub Total | {{ $invoice->sub_total ?? 'N/A' }} |
| Grand Total | {{ $invoice->total_amount ?? 'N/A' }} |
| Discount | {{ $invoice->discount ?? 'N/A' }} |
| Complimentary | {{ $invoice->product->product ?? 'N/A' }} |
| Gst Type | {{ $invoice->gst_type ?? 'N/A' }} |
|---|---|
| CGST | {{ $invoice->cgst ?? 'N/A' }} |
| SGST | {{ $invoice->sgst ?? 'N/A' }} |
| IGST | {{ $invoice->igst ?? 'N/A' }} |
| Paid Amount | {{ $invoice->advance_paid ?? 'N/A' }} |
|---|---|
| Balance | {{ $invoice->balance ?? 'N/A' }} |