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