{!! $data['branch_data']->print_label_en !!}
@if($data['customer']->customer_invoice_type == 1) فاتورة ضريبية مبسطة
VAT Simple Invoice
@else فاتورة ضريبية
VAT INVOICE
@endif
{!! $data['branch_data']->print_label_ar !!}

نوع الفاتـــورة

Invoice type

{{ $data['master']->type_title }}

التاريخ

Date

{{ date("Y-m-d" , strtotime($data['master']->add_date)) }}

رقم الفاتورة

.Invoice No

{{ $data['master']->m_id }}

أسم العميل

.Client Name

{{ $data['customer']->name }}

عنوان

Address

{{ $data['customer']->address }}
@foreach($data['details'] as $key => $row) @endforeach

مسلسل

Serial

بيان

Desc.

وحدة

unit

القيمة

Value excl.VAT

% الضريبة

VAT %

قيمة الضريبة

Amount VAT

الإجمالي شامل الضريبة

Value including VAT

{{ $key + 1 }} {{ $row->item_name }}
{{ $row->description ?? '' }}
{{ $row->unit_name}} {{ number_format($row->total_without_vat , 2 , '.' , ',' ) }} {{ $row->tax_percent ?? 15 }} % {{ number_format($row->total_vat , 2 , '.' , ',' ) }} {{ number_format($row->total_with_vat , 2 , '.' , ',' ) }}