{{ __('Payslip') }}
| {{ __('Employee') }} | {{ $payslip->employee->name }} |
|---|---|
| {{ __('Basic Salary') }} | {{ number_format($payslip->basic_salary, 2) }} |
| {{ __('Allowance') }} | {{ number_format($payslip->allowance, 2) }} |
| {{ __('Bonus') }} | {{ number_format($payslip->bonus, 2) }} |
| {{ __('Deduction') }} | {{ number_format($payslip->deduction, 2) }} |
| {{ __('Tax') }} | {{ number_format($payslip->tax, 2) }} |
| {{ __('Net Salary') }} | {{ number_format($payslip->net_salary, 2) }} |
| {{ __('Payment Date') }} | {{ $payslip->payment_date }} |
___________________________
{{ __('Signature') }}