Purchase Invoice - {{ $invoice_number }}

{{ ucfirst($business_name) }}
Supplier Name

Supplier Email

Supplier Phone

Invoice No

Issue Date

Due Date

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

{{$suppliers->email}}

{{$suppliers->telephone}}

{{ $invoice_number }}

{{$purchase_date}}

{{$due_date}}

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

Summary

@if(!empty($items_details)) @php $i = 0; @endphp @foreach($items_details as $items) @php $i++ ;@endphp @endforeach @endif
# Product Quantity Price Vat Total
{{$i}} {{$items->product_name}} {{number_format($items->quantity,$decimal_point)}} {{number_format($items->price,$decimal_point)}} {{number_format($items->total_tax,$decimal_point)}} {{number_format($items->total,$decimal_point)}}
Sub Total : {{number_format($total_Amt,$decimal_point)}}
Total Tax :{{number_format($total_tax_amt,$decimal_point)}}
Discount : {{number_format($discount,$decimal_point)}}
Total : {{number_format($net_total,$decimal_point)}}