@php use App\Enums\ExpenseRequestStatus; @endphp @extends('layouts/layoutMaster') @section('title', __('Employee Expense Report')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', 'resources/assets/vendor/libs/apex-charts/apex-charts.scss', 'resources/assets/vendor/libs/select2/select2.scss', 'resources/assets/vendor/libs/flatpickr/flatpickr.scss', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', 'resources/assets/vendor/libs/apex-charts/apexcharts.js', 'resources/assets/vendor/libs/select2/select2.js', 'resources/assets/vendor/libs/moment/moment.js', 'resources/assets/vendor/libs/flatpickr/flatpickr.js', ]) @endsection @section('page-script') @vite(['resources/assets/js/app/reports-employee-expense.js']) @endsection @section('content') {{-- Breadcrumb Component --}} {{-- Statistics Cards --}}

{{ __('Total Employees') }}

0

{{ __('with expenses') }}

{{ __('Average per Employee') }}

{{ $settings->currency_symbol }} 0

{{ __('average expense') }}

{{ __('Pending Approvals') }}

0

{{ __('awaiting action') }}

{{ __('Compliance Rate') }}

0%

{{ __('with documents') }}
{{-- Charts Row --}}
{{-- Top Employees Bar Chart --}}
{{ __('Top 10 Employees by Expense') }}
{{-- Monthly Trend Line Chart --}}
{{ __('Monthly Expense Trend') }}
{{-- Filters Section --}}
{{-- Employee Expense DataTable --}}
{{ __('#') }} {{ __('Employee') }} {{ __('Total Submitted') }} {{ __('Total Approved') }} {{ __('Total Requests') }} {{ __('Approval Rate') }} {{ __('Pending') }} {{ __('Actions') }}
{{-- Page Data for JavaScript --}} @endsection