@extends('layouts.app', ['path' => 'reports.payroll.allowance'])
@section('title', 'Allowance Report - HRMS')
@section('content')
Allowance Report
@include('partials.new_alerts')
@include('compaines.reports.widgets.filter-widget', [
'reportType' => 'allowance',
'filters' => [
'dateRange' => true,
'employee' => true,
'department' => true,
'allowanceType' => true,
'status' => false,
],
])
@include('compaines.reports.widgets.report-table', [
'title' => 'Allowance Report Results',
'tableId' => 'allowanceReportTable',
'tableBodyId' => 'reportTableBody',
'reportType' => 'allowance',
'headers' => ['Employee ID','Employee', 'Department', 'Allowance Type', 'Amount', 'Date'],
'emptyIcon' => 'ti ti-report-analytics',
'emptyTitle' => 'No data available',
'emptyMessage' => 'Apply filters and click "View Report" to view results'
])
@endsection
@push('css')
@endpush
@push('scripts')
@endpush