@if (session()->has('message'))
{{ session('message') }}
@endif
{{ __('processing') }}
@foreach ($invoices as $invoice) @endforeach
{{ __('id') }} {{ __('invoicenumber') }} {{ __('clientname') }} {{ __('itemdescription') }} {{ __('price') }} {{ __('quantity') }} {{ __('date') }} {{ __('duedate') }} {{ __('action') }}
{{ $invoice->id }} {{ $invoice->invoice_number }} {{ $invoice->user->name }} {{ $invoice->item->name }} {{ $invoice->currency }}{{ $invoice->price }} {{ $invoice->quantity }} {{ date('d-m-Y', strtotime($invoice->date)) }} {{ date('d-m-Y', strtotime($invoice->due_date)) }}
{{ $invoices->onEachSide(2)->links('custom-pagination-links-view') }}