@extends('hr_main') @section('title', '| Employee Salary Slip') @section('content') @include('convert_word') @include('hr/salarySlip/employeeSalarySlipAjax')

Pay Slip


{!! Form::open(array('url' => '/hr/report/salarySlip/search', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
{{-- Start of Branch Name --}}

Warning: Undefined variable $userId in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 111
{{-- End of Branch Name --}}
{{-- End of Year --}}
{{-- End of Month --}} {{-- Start of the Submit Button --}}
{{-- {!! Form::label('', '', ['class' => 'control-label col-md-12', 'style' => 'color:#708090; padding-top: 25px;']) !!} --}}
{{-- End of the Submit button --}}
{!! Form::close() !!}
@php // dd($checkCondition); @endphp @if ($checkCondition == 0) @elseif ($checkCondition == 1) @php // dd($employeeInfos); @endphp {{-- TABLE START FOR THE EMPLOYEE NAMES --}} @if (sizeof($employeeInfos) > 0) @foreach ($employeeInfos as $key => $employeeInfo) @endforeach @else @endif
Employee ID Name Designation Action
{{$employeeInfo['emp_id']}} {{$employeeInfo['name']}} {{$employeeInfo['designation']}}
NO DATA FOUND!
{{-- TABLE ENDS HERE --}} @elseif ($checkCondition == 2) @endif

@if ($checkCondition == 2) @if (sizeof($employeeInfos) > 0) {{-- @php $userId = Auth::user()->userId; echo $userId; @endphp --}} @php // dd($employeeInfos); $salaryTotal = 0; $company = DB::table('gnr_company')->where('id', Auth::user()->company_id_fk)->select('name','address')->first(); $operationalConfig =DB::table('mfn_cfg')->where('name','operationalPolicy_cfg')->value('config'); $operationalConfiguration = json_decode($operationalConfig,true); $fiscalYear = DB::table('gnr_fiscal_year') ->select('name') ->orderBy('id', 'DESC') ->limit(1) ->pluck('name') ->toArray(); $branchInfos = DB::table('gnr_branch') ->where('id', $branchId) ->pluck('name') ->toArray(); $branchAddress = DB::table('gnr_branch') ->where('id', $branchId) ->pluck('address') ->toArray(); // dd($employeeInfos); @endphp
{{-- div for Company --}} {{--
{{$company->name}}
{{$company->address}}
Branch   :   {{$branchInfos[0]}}
Salary Pay Slip
--}} {{$company->name}}
{{$company->address}}
Branch   :   {{$branchInfos[0]}}
Salary Pay Slip
@php $id = DB::table('hr_emp_general_info') ->where('emp_id', $employeeInfos['emp_id']) ->pluck('id') ->toArray(); $bank_acc_num = DB::table('hr_emp_org_info') ->where('emp_id_fk', $id[0]) ->pluck('bank_account_number') ->toArray(); // dd($bank_acc_num[0]); @endphp
Name : {{$employeeInfos['name']}}
Employee ID : {{$employeeInfos['emp_id']}}
Designation : {{$employeeInfos['designation']}}
For the month : {{$monthAndYearValues}}
Bank Name : N/A
Bank A/c No : {{$bank_acc_num[0]}} @if ($bank_acc_num[0] != "" || $bank_acc_num[0] != null) {{$bank_acc_num[0]}} @else N/A @endif
Working Days : {{$employeeInfos['working_days']}}
Present Days : {{$employeeInfos['present_days']}}
 
 
 
 

@php $house_allowance = 0; foreach ($employeeInfos as $key => $employeeInfo) { if ($key == 'benefit-a-3') { $house_allowance = $employeeInfo; } } $trsvel_allowance = 0; foreach ($employeeInfos as $key => $employeeInfo) { if ($key == 'benefit-a-4') { $trsvel_allowance = $employeeInfo; } } $daily_allowance = 0; foreach ($employeeInfos as $key => $employeeInfo) { if ($key == 'benefit-a-4') { $daily_allowance = $employeeInfo; } } $medical_allowance = 0; foreach ($employeeInfos as $key => $employeeInfo) { if ($key == 'benefit-a-4') { $medical_allowance = $employeeInfo; } } $b8 = 0; $b9 = 0; $b10 = 0; $b11 = 0; $b12 = 0; $b13 = 0; $b15 = 0; $b16 = 0; $b17 = 0; $b18 = 0; foreach ($employeeInfos as $key => $employeeInfo) { if ($key == 'benefit-b-8') $b8 = $employeeInfo; elseif ($key == 'benefit-b-9') $b9 = $employeeInfo; elseif ($key == 'benefit-b-10') $b10 = $employeeInfo; elseif ($key == 'benefit-b-11') $b11 = $employeeInfo; elseif ($key == 'benefit-b-12') $b12 = $employeeInfo; elseif ($key == 'benefit-b-13') $b13 = $employeeInfo; elseif ($key == 'benefit-b-15') $b15 = $employeeInfo; elseif ($key == 'benefit-b-16') $b16 = $employeeInfo; elseif ($key == 'benefit-b-17') $b17 = $employeeInfo; elseif ($key == 'benefit-b-18') $b18 = $employeeInfo; } @endphp
Earning's Amount Deduction's Amount
Gross Salary
Basic Salary

Warning: Undefined variable $house_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 490

Warning: Undefined variable $trsvel_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 493

Warning: Undefined variable $daily_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 496

Warning: Undefined variable $medical_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 499
Employee Benefits

Warning: Undefined variable $b8 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 503

Warning: Undefined variable $b9 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 506

Warning: Undefined variable $b10 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 509

Warning: Undefined variable $b11 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 512

Warning: Undefined variable $b12 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 515

Warning: Undefined variable $b13 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 518

Warning: Undefined variable $b15 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 521

Warning: Undefined variable $b16 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 524

Warning: Undefined variable $b17 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 527

Warning: Undefined variable $b18 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 530
Organization Contribution
Provident Fund Contribution (Organisation)
Welfare Fund Contribution (Organization)

{{number_format($employeeInfos['basic_salary'], 2)}}

Warning: Undefined variable $house_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 541

Warning: Undefined variable $trsvel_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 546

Warning: Undefined variable $daily_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 551

Warning: Undefined variable $medical_allowance in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 556


Warning: Undefined variable $b8 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 562

Warning: Undefined variable $b9 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 565

Warning: Undefined variable $b10 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 568

Warning: Undefined variable $b11 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 571

Warning: Undefined variable $b12 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 574

Warning: Undefined variable $b13 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 577

Warning: Undefined variable $b15 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 580

Warning: Undefined variable $b16 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 583

Warning: Undefined variable $b17 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 586

Warning: Undefined variable $b18 in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 589

{{number_format($employeeInfos['pf_org'], 2)}}
{{number_format($employeeInfos['wf_org'], 2)}}
Provident Fund

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 598

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 598

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 601

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 601

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 604

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 604
Welfare Fund

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 608

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 608

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 611

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 611

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 614

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 614
Others
@php $eps = 0; foreach ($employeeInfos as $key => $employeeInfo) { if ($key == 'eps') { $eps = $employeeInfo; } } @endphp
Warning: Undefined variable $eps in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 627

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 630

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 630

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 633

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 633

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 636

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 636

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 639

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 639

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 642

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 642


Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 648

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 648

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 651

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 651

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 654

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 654


Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 658

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 658

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 661

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 661

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 664

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 664


Warning: Undefined variable $eps in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 669

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 672

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 672

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 675

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 675

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 678

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 678

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 681

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 681

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 684

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/salarySlip/employeeSalarySlipForm.blade.php on line 684
Total Salary and Benfits {{number_format($employeeInfos['total_salary_benefits'], 2)}} Total Deductions {{number_format($employeeInfos['total_deductions'], 2)}}
 
Net Pay      Tk.{{number_format($employeeInfos['net_payable'], 2)}}
In Words    {{convert_number_to_words($employeeInfos['net_payable'])}}
 
 
{{--
--}} Employee Signature
{{--
--}} Authorize Signature

@else @endif
 
 
 
 
 
{{--
Salary :
  • Gross Salary
    • Basic Salary : {{$employeeInfos['basic_salary']}}
    • House Allowance
    • Travel allowance
    • Daily Allowance
    • Medical Allowance
    • Gross Salary : {{$employeeInfos['gross_salary']}}
  • --}} @endif {{-- @include('microfin/reports/mfnFieldOfficerReport/mfnFieldreport1_new_table'); --}}
    @endsection