@if ($message = Session::get('success'))
@endif
@if ($errorMessage = Session::get('errorMessage'))
@endif
| No. |
Expense Date |
Category |
Category GL Code |
Level Of Expense |
Area Office |
Collection Point |
Expense From |
Bank |
Petty Cash Wallet |
Amount |
Remarks |
@php $count = count($genExpenseBatch); @endphp
@foreach ($genExpenseBatch as $key => $batch)
| {{ $key + 1 }} |
{{ $batch->exp_date }} |
{{ $batch->expenseCategory ? $batch->expenseCategory->category_name : 'N/A' }} |
{{ $batch->expenseCategory ? $batch->expenseCategory->gl_code : 'N/A' }} |
{{ $batch->level_of_expense == 'area_office' ? 'Area Office' : 'Collection Point' }} |
{{ $batch->areaOffice ? $batch->areaOffice->ao_name : 'N/A' }} |
{{ $batch->collectionPoint ? $batch->collectionPoint->name : 'N/A' }} |
{{ $batch->type == 'bank' ? 'Bank' : 'Petty Cash' }} |
{{ $batch->bankAccount ? $batch->bankAccount->bank_acc_title : 'N/A' }} |
{{ $batch->pettyCashWallet ? $batch->pettyCashWallet->title : 'N/A' }} |
{{ $batch->amount }} |
{{ $batch->remarks }} |
@endforeach
| No Data Found |