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

Expense Approvals

List of all expenses that need approval

Add Payment Method
Payment Method *
@if ($payment_method && $payment_method == $paymentMethods->where('prefix', 'CHQ')->first()?->slug)
Cheque Number *
@elseif ($payment_method && $payment_method == $paymentMethods->where('prefix', 'MOB')->first()?->slug)
Mobile Number *
@else
Transaction Id
@endif
{{ __('Cancel') }} {{ __('Save') }}
Add Bulk Payment Method
Payment Method *
@if ($payment_method && $payment_method == $paymentMethods->where('prefix', 'CHQ')->first()->slug)
Cheque Number *
@elseif ($payment_method && $payment_method == $paymentMethods->where('prefix', 'MOB')->first()->slug)
Mobile Number *
@else
Transaction Id
@endif
{{ __('Cancel') }} {{ __('Save') }}
Filters Filters
{{ __('Close') }}
@if (count($selectedReqs) > 0)
{{ count($selectedReqs) }} Selected Requisition(s)
Approve Decline
@endif
{{-- --}} @if ($expenses->isEmpty()) @else @foreach ($expenses as $expense) @endforeach @endif
# Expense Item Narration Curr Amount Request Actions
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 ? '...' : '' }}
{{ $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 ? '...' : '' }}
Approve Decline
{{ $expenses->links() }}
@endcan