{{-- A good traveler has no fixed plans and is not intent upon arriving. --}} @can('view-expense-transactions')

Expenses

List of all expenses

Filters Filters
{{ __('Close') }}
Export
{{-- @can('create-expense-transactions') @livewire('finincials.new-expense-model', [], key('new-expense')) @endcan --}}
{{-- --}} {{-- --}} @if ($expenses->isEmpty()) @else @foreach ($expenses as $expense) {{-- --}} @endforeach @endif
# Expense Item Narration Curr Amount Date Cashier
No financial expenses found.
{{ $loop->iteration }}
{{ substr($expense->financialcategory->name, 0, 20) }}{{ strlen($expense->financialcategory->name) > 20 ? '...' : '' }}
@if ($expense->voucher_number)
VN: {{ $expense->voucher_number }}
@endif {{ substr($expense->narration, 0, 15) }}{{ strlen($expense->narration) > 15 ? '...' : '' }}
@if ($expense->cheque_number)
TN: {{ $expense->cheque_number }}
@endif {{ $expense->currency->symbol }} {{ number_format(round($expense->amount, 2), 2) }}
{{ $expense->date_of_payment }}
{{ substr($expense->paidBy->name, 0, 15) }}{{ strlen($expense->paidBy->name) > 15 ? '...' : '' }}
{{ $expenses->links() }}
@endcan