@if(session('success'))
@endif
@if ($errors->any())
{!! implode('
', $errors->all(':message')) !!}
@endif
Total Non Transferred Invoices
{{ $invoices->count() }}
Total Non Transferred Net Amount
0
@if(!request()->has('from'))
Showing results from past 90 days.
@endif
| Supplier |
Invoice No. |
Invoice Date |
Net Amount |
VAT |
Gross |
View |
@php $net_amount = 0; @endphp
@foreach($invoices as $invoice)
| {{ $invoice->company_name }} |
{{ $invoice->invoice_no }} |
{{ date('d M, Y', strtotime($invoice->date)) }} |
£{{ number_format($invoice->amount, 2) }} |
£{{ number_format($invoice->vat, 2) }} |
£{{ number_format($invoice->vat+$invoice->amount, 2) }}
|
|
@php $net_amount += $invoice->amount; @endphp
@endforeach