{{ $invoice->doctor->title }} {{ $invoice->doctor->user->name }}
Email: {{ $invoice->doctor->user->email }}
Phone: {{ $invoice->doctor->user->phone }}
{{ $invoice->patient->user->name }}
Email: {{ $invoice->patient->user->email }}
Phone: {{ $invoice->patient->user->phone }}
Invoice Number: {{ $invoice->invoice_id }}
Date: {{ $invoice->invoice_date }}
| # | Description | Quantity | Unit Price | Total |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->name }} | {{ $item->quantity }} | {{ number_format($item->price, 2) }} | {{ number_format($item->price * $item->quantity, 2) }} |
| No items found. | ||||
Total Quantity: {{ $totalQuantity }}
Subtotal: {{ number_format($invoice->sub_total, 2) }}
Discount: {{ number_format($invoice->discount, 2) }}
Grand Total: {{ number_format($invoice->grand_total, 2) }}