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