@php $company_settings = getCompanyAllSetting(); @endphp
{{ __('Earning') }} | {{ __('Title') }} | {{ __('Type') }} | {{ __('Amount') }} | |
---|---|---|---|---|
{{ __('Basic Salary') }} | - | - | {{ currency_format_with_sym($payslip->basic_salary) }} | |
{{ __('Allowance') }} | {{ $allowance->title }} | {{ ucfirst($allowance->type) }} | @if ($allowance->type != 'percentage'){{ currency_format_with_sym($allowance->amount) }} | @else{{ $allowance->amount }}% ({{ currency_format_with_sym(($allowance->amount * $payslip->basic_salary) / 100) }}) | @endif
{{ __('Commission') }} | {{ $commission->title }} | {{ ucfirst($commission->type) }} | @if ($commission->type != 'percentage'){{ currency_format_with_sym($commission->amount) }} | @else{{ $commission->amount }}% ({{ currency_format_with_sym(($commission->amount * $payslip->basic_salary) / 100) }}) | @endif
{{ __('Other Payment') }} | {{ $other_payment->title }} | {{ ucfirst($other_payment->type) }} | @if ($other_payment->type != 'percentage'){{ currency_format_with_sym($other_payment->amount) }} | @else{{ $other_payment->amount }}% ({{ currency_format_with_sym(($other_payment->amount * $payslip->basic_salary) / 100) }}) | @endif
{{ __('OverTime') }} | {{ $overtime->title }} | - | {{ currency_format_with_sym($overtime->number_of_days * $overtime->hours * $overtime->rate) }} | |
{{ __('Company Contribution') }} | {{ $company_contribution->title }} | {{ ucfirst($company_contribution->type) }} | @if ($company_contribution->type != 'percentage'){{ currency_format_with_sym($company_contribution->amount) }} | @else{{ $company_contribution->amount }}% ({{ currency_format_with_sym(($company_contribution->amount * $payslip->basic_salary) / 100) }}) | @endif
{{ __('Deduction') }} | {{ __('Title') }} | {{ __('type') }} | {{ __('Amount') }} | |
---|---|---|---|---|
{{ __('Loan') }} | {{ $loan->title }} | {{ ucfirst($loan->type) }} | @if ($loan->type != 'percentage'){{ currency_format_with_sym($loan->amount) }} | @else{{ $loan->amount }}% ({{ currency_format_with_sym(($loan->amount * $payslip->basic_salary) / 100) }}) | @endif
{{ __('Saturation Deduction') }} | {{ $saturation_deduction->title }} | {{ ucfirst($saturation_deduction->type) }} | @if ($saturation_deduction->type != 'percentage'){{ currency_format_with_sym($saturation_deduction->amount) }} | @else{{ $saturation_deduction->amount }}% ({{ currency_format_with_sym(($saturation_deduction->amount * $payslip->basic_salary) / 100) }}) | @endif
{{ __('Employee Signature') }}
{{ __('Paid By') }}