Sales Invoice Statement
{{ $business_name }}
{{$data["name"]}}
Invoice {{ $invoice_number }} statement
@if(!empty($data))
Customer Name {{$data["name"]}}
Invoice No {{$data["invoice_no"]}}
Issue Date {{date("d-m-Y",strtotime($data["issue_date"]))}}
Due Date {{date("d-m-Y",strtotime($data["due_date"]))}}
Invoice Amount {{ number_format($data["invoice_amount"],$decimal_point)}}

Summary

@if(!empty($invoice_summery)) @php $i = 0; @endphp @foreach($invoice_summery as $items) @php $i++ ;@endphp @endforeach @endif
Serial Date Type Description Reference Amount
{{$i}} {{date("d M Y",strtotime($items->date))}} Income {{$items->description}} {{$items->reference}} {{ !empty($items->amount) ? number_format($items->amount,$decimal_point) : number_format(0,$decimal_point) }}
           
Balance       {{ !empty($data["balance"]) ? number_format($data["balance"],$decimal_point) : number_format(0,$decimal_point) }}
@endif