@csrf
Company logo

Invoice to :{{ $data['customerdetails']->account_name }}

{{ $data['customerdetails']->address }}

P: {{ $data['customerdetails']->mobile }}

E: {{ $data['customerdetails']->email }}

Sales Quote

Quote Dated {{ date('d M Y', strtotime(getUaeDateTime($data['date'], $time_zone)) )}} Valid till {{ date('d M Y', strtotime(getUaeDateTime($data['expiry_date'], $time_zone)) )}} Invoice No {{ $data['code'] }}
@if(isset($data['items'])) @foreach($data['items'] as $key => $item) @endforeach @endif
Item Description Unit Price Quantity Total
{{ $item[0]->name }}

{{ $item[0]->description }}

{{formatedec($data['rate'][$key])}} {{ $data['quantity'][$key] }} {{ $data['amount'][$key] }}
Sub Total {{ $data['sub_total'] }}
Tax VAT {{ $data['total_tax'] }}
Discount {{ $data['total_discount'] }}
Total Due {{ $data['total'] }}
@section('styles') @stop