{{ __('main.expense_list') }}
@foreach ($expenses as $item) @endforeach
{{ __('main.date') }} {{ __('main.title') }} {{ __('main.amount') }} {{ __('main.towards') }} {{ __('main.vat_included') }} {{ __('main.payment_mode') }} {{ __('main.actions') }}
{{$item->date->format('d/m/Y')}}
{{$item->createdBy->name}}
@if($item->title)
{{Str::limit($item->title,20)}}
@else - @endif
{{getFormattedCurrency($item->amount)}}
{{$item->head->name ?? ''}} {{$item->tax_included == 1 ? __('main.yes') : __('main.no')}}
{{getPaymentMode($item->payment_mode)}}
{{ __('main.view') }} {{ __('main.edit') }} {{ __('main.delete') }}
@if(count($expenses) == 0) @endif