@php($page_name = 'HR > Payslips')
@include('layouts.table_top')
{{-- Filters --}}
@if ($payslip)
@else
{{ $payslip['employee']->name }} ({{ $payslip['employee']->employee_id }})
Month:
{{ \Carbon\Carbon::parse($payslip['month_token'] . '-01')->format('F Y') }}
Financial Year: {{ $payslip['financial_year'] }}
Additions
| Head | Amount |
|---|---|
| {{ $h->head_name }} | {{ number_format($h->amount, 2) }} |
| No additions | |
| Total Additions | {{ number_format($payslip['total_add'], 2) }} |
Deductions
| Head | Amount |
|---|---|
| {{ $h->head_name }} | {{ number_format($h->amount, 2) }} |
| No deductions | |
| Total Deductions | {{ number_format($payslip['total_ded'], 2) }} |
| Net Salary | {{ number_format($payslip['net'], 2) }} |
|---|---|
| Paid | {{ number_format($payslip['paid'], 2) }} |
| Balance Due | {{ number_format($payslip['due'], 2) }} |
Select an employee and month to view the payslip.
@endif