Rental Expenses

@forelse($rentalExpenses as $key => $expense) @empty @endforelse
S.No Branch Month/Year Amount Actions
{{ $key + 1 }} {{ $expense->branch->branch_name ?? 'N/A' }}
{{ $expense->branch->city ?? '' }}
{{ $expense->month_name }} {{ number_format($expense->amount, 2) }}

No rental expenses found.

@if($rentalExpenses instanceof \Illuminate\Pagination\LengthAwarePaginator) {{ $rentalExpenses->withQueryString()->links() }} @endif