Rental Expenses

@forelse($rentalExpenses as $key => $expense) @empty @endforelse
S.No Branch Month/Year Amount Added By Added On Actions
{{ $rentalExpenses->firstItem() + $key }} {{ $expense->branch->branch_name ?? 'N/A' }}
{{ $expense->branch->city ?? '' }}
{{ $expense->month_name }} {{ number_format($expense->amount, 2) }} {{ $expense->user->name ?? 'System' }} @if($expense->partner)
{{ $expense->partner->full_name ?? $expense->partner->company_name ?? '' }} @endif
{{ $expense->created_at->format('d-m-Y h:i A') }}

No rental expenses found.

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