@extends('layouts/contentLayoutMaster') @section('title', 'View General Expense Batch') @section('vendor-style') @endsection @section('content')

View General Expense Batch

@if ($message = Session::get('success'))
@endif @if ($errorMessage = Session::get('errorMessage'))
@endif
@php $count = count($genExpenseBatch); @endphp @foreach ($genExpenseBatch as $key => $batch) @endforeach
No. Expense Date Category Category GL Code Level Of Expense Area Office Collection Point Expense From Bank Petty Cash Wallet Amount Remarks
{{ $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 }}
No Data Found
@endsection @section('vendor-script') @endsection