@php $title = __('Expense Summary by Category'); @endphp @section('title', $title) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/apex-charts/apex-charts.scss', 'resources/assets/vendor/libs/select2/select2.scss', 'resources/assets/vendor/libs/flatpickr/flatpickr.scss', 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/apex-charts/apexcharts.js', 'resources/assets/vendor/libs/select2/select2.js', 'resources/assets/vendor/libs/flatpickr/flatpickr.js', 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', ]) @endsection @section('page-script') @vite(['resources/assets/js/app/expense-summary-report.js']) @endsection @extends('layouts/layoutMaster') @section('content') {{-- Breadcrumbs --}} {{-- Filter Panel --}}
{{ __('Filters') }}
{{-- Date From --}}
{{-- Date To --}}
{{-- Status Filter --}}
{{-- Expense Type Filter --}}
{{-- Filter Buttons --}}
{{-- Summary Cards --}}
{{-- Total Submitted Amount --}}

{{ __('Total Submitted') }}

{{ $settings->currency_symbol ?? '$' }} 0.00

{{ __('All submitted expenses') }}

{{-- Total Approved Amount --}}

{{ __('Total Approved') }}

{{ $settings->currency_symbol ?? '$' }} 0.00

{{ __('All approved expenses') }}

{{-- Approval Rate --}}

{{ __('Approval Rate') }}

0.0%

{{ __('Percentage approved') }}

{{-- Total Requests --}}

{{ __('Total Requests') }}

0

{{ __('Number of requests') }}

{{-- Charts Section --}}
{{-- Donut Chart --}}
{{ __('Expense Distribution by Type') }}
{{ __('Loading...') }}

{{ __('Loading chart data...') }}

{{-- Bar Chart --}}
{{ __('Submitted vs Approved by Category') }}
{{ __('Loading...') }}

{{ __('Loading chart data...') }}

{{-- DataTable Section --}}
{{ __('Detailed Summary by Category') }}
{{ __('Expense Type') }} {{ __('Total Submitted') }} {{ __('Total Approved') }} {{ __('Number of Requests') }} {{ __('Approval Rate') }} {{ __('Average Amount') }}
@endsection