Sales Invoice - {{ $invoice_number }}

{{ ucfirst($business_name) }}
Customer Name

Customer Email

Customer Phone

Invoice No

Invoice Date

Due Date

Invoice Amount
{{$customers->fname.' '.$customers->lname.' '.$customers->business_name}}

{{$customers->email}}

{{$customers->telephone}}

{{ $invoice_number }}

{{$invoice_date}}

{{$due_date}}

{{number_format($total_Amt,$decimal_point)}}

Summary

@if(!empty($items_details)) @php $i = 0; @endphp @foreach($items_details as $items) @php $i++ ;@endphp @endforeach @endif
# Product Code Quantity Price Discount Vat Total
{{$i}} {{$items['product_name']}} {{$items['item_code']}} {{number_format($items['quantity'],$quantityDecimalPoint)}} {{number_format($items['price'],$decimal_point)}} {{number_format($items['discount'],$decimal_point)}} {{number_format($items['tax_amount'],$decimal_point)}} {{number_format($items['total'],$decimal_point)}}
Sub Total : {{number_format($net_total,$decimal_point)}}
Total Tax : {{number_format($total_tax_amt,$decimal_point)}}
Discount : {{number_format($total_discount,$decimal_point)}}
Total : {{number_format($total_Amt,$decimal_point)}}