@extends('layouts.master') @section('content')
{{ $title }}
List of Historical Payroll Standard Reports
@include('layouts.pagetitle')
@if(isset($error) || session('error'))
{{ $error ?? session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif
Report Name Description Actions
Payroll Summary This report outlines employees' earnings and deductions. @canany(['Run payrolls', 'View Reports']) View @endcanany
Payroll Register This report outlines employees' earnings and deductions. @canany(['Run payrolls', 'View Reports']) View @endcanany
PAYE This report outlines the Pay As You Earn tax deduction per employee. @canany(['Run payrolls', 'View Reports']) View @endcanany
Earnings This report outlines the employees per earning definition and period. @canany(['Run payrolls', 'View Reports']) View @endcanany
Deductions This report outlines the employees per deduction definition and period. @canany(['Run payrolls', 'View Reports']) View @endcanany
Earnings by Unit This report outlines a list of employees in a unit for a particular earning definition. @canany(['Run payrolls', 'View Reports']) View @endcanany
Earnings by Department This report outlines a list of employees in a department for a particular earning definition. @canany(['Run payrolls', 'View Reports']) View @endcanany
Deduction by Unit This report outlines a list of employees in a unit for a particular deduction definition. @canany(['Run payrolls', 'View Reports']) View @endcanany
Deduction by Department This report outlines a list of employees in a department for a particular deduction definition. @canany(['Run payrolls', 'View Reports']) View @endcanany
@endsection @section('modal') @php $pamPayrollModal=\App\Models\PamPayroll::where('status', 'active' )->get(); $pamPayRunModal = \App\Models\PamPayRunPeriod::where('period_status', 'Active')->get(); $pamEmpUnitModal = \App\Models\PamEmpUnit::all(); $pamPayrollEarningsModal=\App\Models\PamDeduDef::where('status', 'active' )->get(); $pamPayrollDeductionsModal=\App\Models\PamDeduDef::where('status', 'active' )->get(); @endphp @endsection @section('scripts') @endsection