رقم: {{ $invoice->invoice_number }} | التاريخ: {{ $invoice->issue_date->format('d/m/Y') }}
العميل: {{ $invoice->customer->name }} - {{ $invoice->customer->phone }}
@if($invoice->order)| المنتج | الكمية | السعر | الإجمالي |
|---|---|---|---|
| {{ $item->product->name }} | {{ $item->quantity }} | {{ number_format((float) $item->price, 2) }} | {{ number_format((float) $item->total, 2) }} |
| المجموع | {{ number_format((float) $invoice->subtotal, 2) }} |
|---|---|
| الخصم | {{ number_format((float) $invoice->discount, 2) }} |
| الضريبة | {{ number_format((float) $invoice->tax, 2) }} |
| الإجمالي | {{ number_format((float) $invoice->total, 2) }} |
| المدفوع | {{ number_format((float) $invoice->paid, 2) }} |
| المتبقي | {{ number_format((float) $invoice->balance, 2) }} |