{{ __('Payslip') }}
| {{ __('Employee') }} | {{ $payslip->employee->name }} |
|---|---|
| {{ __('Basic Salary') }} | {{ number_format($payslip->basic_salary, 2) }} |
| {{ __('Fixed Allowances') }} | {{ number_format($payslip->fixed_allowance, 2) }} |
| {{ __('Bonus') }} | {{ number_format($payslip->bonus, 2) }} |
| {{ __('Overtime') }} | {{ number_format($payslip->overtime_amount, 2) }} ({{ $payslip->overtime_duration }}) |
| {{ __('Deduction') }} | {{ number_format($payslip->deduction, 2) }} |
| {{ __('Deduction before waiver') }} | {{ number_format($payslip->deduction_before_waiver, 2) }} |
| {{ __('Waived amount') }} | {{ number_format($payslip->deduction_waiver_amount, 2) }} |
| {{ __('Waiver note') }} | {{ $payslip->deduction_waiver_note }} |
| {{ __('Tax') }} | {{ number_format($payslip->tax, 2) }} |
| {{ __('Net Salary') }} | {{ number_format($payslip->net_salary, 2) }} |
| {{ __('Period') }} | {{ $payslip->period_start->format('Y-m-d') }} - {{ $payslip->period_end->format('Y-m-d') }} |
| {{ __('Payment Date') }} | {{ $payslip->payment_date }} |
___________________________
{{ __('Signature') }}