@if($invoice->branch)
الفرع: {{ $invoice->branch->name }} - {{ $invoice->branch->place }}
@elseالعنوان : لين - شارع الطائف
@endifالتلفون : 0571700030
| التاريخ: | {{ $invoice->order_date }} | الوقت: | {{ date('H:i:s') }} |
| التسليم: | {{ $invoice->delivery_date }} | المرجع: | {{ $invoice->id }} |
| بيانات العميل: |
رقم: {{ $invoice->customer->id ?? '-' }}
جوال: {{ $invoice->customer->phone ?? '-' }}
|
||
| اسم العميل: | {{ $invoice->customer->name ?? 'عميل نقدي' }} | ||
| الصنف | التفصيل |
|---|---|
| {{ $order->product->product_name ?? 'خياطة ثوب' }} | {{ number_format($order->total_measurements, 2) }} |
| الخصم: | {{ number_format($invoice->discount ?? 0, 2) }} |
| الإجمالي (غير شامل الضريبة): | {{ number_format($subTotal, 2) }} |
| ضريبة القيمة المضافة ({{ $invoice->Added_Value ?? 0 }}%): | {{ number_format($taxAmount, 2) }} |
| إجمالي المبلغ المستحق: | {{ number_format($invoice->Price, 2) }} ريال |
| إجمالي المبلغ المدفوع: | {{ number_format($invoice->Pay, 2) }} ريال |
| إجمالي المبلغ المتبقي: | {{ number_format($invoice->Price - $invoice->Pay, 2) }} ريال |