{{ $data['company_name'] }}
{{ $data['invoice_number'] }}
{{ $data['currency_symbol'] }} {{ $data['total_amount'] }}
{{ $data['date_format'] }}
{{ $data['company_address1'] }}
{{ $data['company_address2'] }},
{{ $data['state_name'] }}
{{ $data['company_address3'] }}
{{ $data['company_phone'] }}
{{ $data['company_country'] }}
Company Image {{ $data['company_name'] }} ESTIMATION
{{ $data['invoice_header'] }},
BILL TO:
{{ $data['client_name'] }}
{{ $data['client_address1'] }}
{{ $data['client_address2'] }}
{{ $data['billing_state_name'] }}
{{ $data['client_address3'] }}
{{ $data['billing_country_name'] }}
TaxNumber: {{ $data['client_tax_number'] }}
Estimation No: {{ $data['invoice_number'] }}
Date: {{ $data['date_format'] }}
@if(count($data->invoice_items)>=1) @foreach($data->invoice_items as $items) @endforeach @endif
Product Name Description Quantity Rate Amount
{{$items->product_name}}
@if(!empty($items->item_description)) {{$items->item_description}} @else N/A @endif
{{round($items->item_qty)}} {{$data['currency_symbol'].' '.number_format(round($items->rate,2),2)}} {{$data['currency_symbol'].' '.number_format(round($items->item_total_amount,),2)}}
Subtotal: {{$data['currency_symbol'].' '.number_format(round($data->subtotal_amount,2),2)}}
Total: {{ $data['currency_symbol'].' '.$data['total_amount'] }}
Paid: {{ $data['currency_symbol'].' '.number_format(round($data->paid_amount,2),2) }}
Balance Due: {{ $data['currency_symbol'].' '.number_format(round((float)$data->balance_due_amount,2),2) }}
Notes :
{{ $data['invoice_comment'] }}
@if(count($data->invoice_attachments)>=1) @foreach($data->invoice_attachments as $items_attachment) @endforeach @endif
{{$items_attachment->attachment_name}}
{{ $data['invoice_footer'] }}