Payroll Report

Generated on {{ now()->format('F d, Y H:i:s') }}

Total Records: {{ $payrolls->count() }}

@foreach($payrolls as $payroll) @endforeach
Employee Month/Year Gross Deductions Net Status
{{ $payroll->employee->first_name ?? '' }} {{ $payroll->employee->last_name ?? '' }} @if($payroll->payrollSummary) {{ date('M', mktime(0,0,0,$payroll->payrollSummary->month,1)) }} {{ $payroll->payrollSummary->year }} @else N/A @endif ${{ number_format($payroll->gross, 2) }} ${{ number_format($payroll->total_deductions, 2) }} ${{ number_format($payroll->net, 2) }} Processed