@extends('layouts.admin') @section('page-title', 'Expense Report') @section('page-subtitle', 'Filter, review, and export employee expenses') @section('content') @php use Illuminate\Support\Str; @endphp
Choose a month or custom date range. You can also filter by employee.
| Employee Name | Emp Code | No. of Claims | Total Amount (₹) | Action |
|---|---|---|---|---|
| {{ $row->name }} | {{ $row->employee->emp_code ?? '-' }} | {{ $row->expenses_count }} | ₹ {{ number_format($row->expenses_sum_amount, 2) }} | View Details |
| No expenses found for this period. | ||||