@extends('layouts.main') @section('page-title') {{ __('Vendor Statement') }} @endsection @section('page-breadcrumb') {{ __('Vendor') }},{{$vendor['name']}} @endsection @push('scripts') @endpush @section('page-action')
@endsection @section('content'){{__('Date')}} | {{__('Invoice')}} | {{__('Amount')}} | |||
---|---|---|---|---|---|
{{ company_date_formate($payment->date)}} | {{ 'user invoiceNumberFormat'.$payment->invoice_id}} | {{ currency_format_with_sym(($payment->amount))}} | |||
{{__('No Data Found')}} |
|||||
{{__('TOTAL :')}} | @foreach($bill_payment as $key=>$payment) @php $total += $payment->amount; @endphp @endforeach | {{currency_format_with_sym($total)}} |