• {{ __('Name') }} :

    {{ $employee->name }}

  • {{ __('Position') }} :

    {{ __('Employee') }}

  • {{ __('Salary Date') }} :

    {{ company_date_formate($employee->created_at) }}

  • {{ !empty($company_settings['company_name']) ? $company_settings['company_name'] : '' }} :

    {{ !empty($company_settings['company_address']) ? $company_settings['company_address'] : '' }} , {{ !empty($company_settings['company_city']) ? $company_settings['company_city'] : '' }}, {{ !empty($company_settings['company_state']) ? $company_settings['company_state'] : '' }}

  • {{ __('Salary Slip') }} :

    {{ company_date_formate($payslip->salary_month) }}

@php $allowances = json_decode($payslipDetail['payslip']->allowance); @endphp @foreach ($allowances as $allowance) @if ($allowance->type != 'percentage') @else @endif @endforeach @php $commissions = json_decode($payslipDetail['payslip']->commission); @endphp @foreach ($commissions as $commission) @if ($commission->type != 'percentage') @else @endif @endforeach @php $other_payments = json_decode($payslipDetail['payslip']->other_payment); @endphp @foreach ($other_payments as $other_payment) @if ($other_payment->type != 'percentage') @else @endif @endforeach @php $overtimes = json_decode($payslipDetail['payslip']->overtime); @endphp @foreach ($overtimes as $overtime) @endforeach @php $company_contributions = json_decode($payslipDetail['payslip']->company_contribution); @endphp @foreach ($company_contributions as $company_contribution) @if ($company_contribution->type != 'percentage') @else @endif @endforeach
{{ __('Earning') }} {{ __('Title') }} {{ __('Amount') }}
{{ __('Basic Salary') }} - {{ currency_format_with_sym($payslip->basic_salary) }}
{{ __('Allowance') }} {{ $allowance->title }} {{ currency_format_with_sym($allowance->amount) }}{{ $allowance->amount }}% ({{ currency_format_with_sym(($allowance->amount * $payslip->basic_salary) / 100) }})
{{ __('Commission') }} {{ $commission->title }} {{ currency_format_with_sym($commission->amount) }}{{ $commission->amount }}% ({{ currency_format_with_sym(($commission->amount * $payslip->basic_salary) / 100) }})
{{ __('Other Payment') }} {{ $other_payment->title }} {{ currency_format_with_sym($other_payment->amount) }}{{ $other_payment->amount }}% ({{ currency_format_with_sym(($other_payment->amount * $payslip->basic_salary) / 100) }})
{{ __('OverTime') }} {{ $overtime->title }} {{ currency_format_with_sym($overtime->number_of_days * $overtime->hours * $overtime->rate) }}
{{ __('Company Contribution') }} {{ $company_contribution->title }} {{ currency_format_with_sym($company_contribution->amount) }}{{ $company_contribution->amount }}% ({{ currency_format_with_sym(($company_contribution->amount * $payslip->basic_salary) / 100) }})
@php $loans = json_decode($payslipDetail['payslip']->loan); @endphp @foreach ($loans as $loan) @if ($loan->type != 'percentage') @else @endif @endforeach @php $saturation_deductions = json_decode( $payslipDetail['payslip']->saturation_deduction, ); @endphp @foreach ($saturation_deductions as $saturation_deduction) @if ($saturation_deduction->type != 'percentage') @else @endif @endforeach
{{ __('Deduction') }} {{ __('Title') }} {{ __('Amount') }}
{{ __('Loan') }} {{ $loan->title }} {{ currency_format_with_sym($loan->amount) }}{{ $loan->amount }}% ({{ currency_format_with_sym(($loan->amount * $payslip->basic_salary) / 100) }})
{{ __('Saturation Deduction') }} {{ $saturation_deduction->title }} {{ currency_format_with_sym($saturation_deduction->amount) }} {{ $saturation_deduction->amount }}% ({{ currency_format_with_sym(($saturation_deduction->amount * $payslip->basic_salary) / 100) }})
{{__('Earning')}}
{{ __('Total Earning') }}
{{ currency_format_with_sym($payslipDetail['totalEarning']) }}
{{ __('Taxable Earning')}}

{{__('(Total Earning - Total Deduction)')}}

{{ currency_format_with_sym($payslipDetail['taxable_earning']) }}
{{__('Deduction')}}
{{ __('Total Deduction') }}
{{ currency_format_with_sym($payslipDetail['totalDeduction']) }}
{{ __('Tax')}}

{{__('(Total Earning x '.$payslipDetail['tax_rate'].'%)')}}

{{ currency_format_with_sym($payslipDetail['tax_amount']) }}
{{ __('Net Salary')}}

{{__('Taxable Earning - Tax ')}}

{{ currency_format_with_sym($payslip->net_payble) }}