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

Pay Slip


{!! Form::open([ '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/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 125
{{-- End of Branch Name --}}
@php // dd($yearValues); @endphp
{{-- 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(); $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(); $empAccount = DB::table('hr_emp_account_info') ->join('gnr_bank', 'hr_emp_account_info.bank_id', '=', 'gnr_bank.id') ->where('hr_emp_account_info.emp_id_fk', $id[0]) ->where('hr_emp_account_info.status', 'Approved') ->orderBy('hr_emp_account_info.effect_date', 'DESC') ->select('gnr_bank.name AS bank_name', 'hr_emp_account_info.account_no') ->first(); @endphp
Name : {{ $employeeInfos['name'] }}
Employee ID : {{ $employeeInfos['emp_id'] }}
Designation : {{ $employeeInfos['designation'] }}
For the month : {{ $monthAndYearValues }}
Bank Name : @if ($empAccount != null) {{ $empAccount->bank_name }} @else N/A @endif
Bank A/c No : @if ($empAccount != null) {{ $empAccount->account_no }} @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/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 534

Warning: Undefined variable $trsvel_allowance in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 537

Warning: Undefined variable $daily_allowance in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 540

Warning: Undefined variable $medical_allowance in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 543
Employee Benefits

Warning: Undefined variable $b8 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 547

Warning: Undefined variable $b9 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 550

Warning: Undefined variable $b10 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 553

Warning: Undefined variable $b11 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 556

Warning: Undefined variable $b12 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 559

Warning: Undefined variable $b13 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 562

Warning: Undefined variable $b15 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 565

Warning: Undefined variable $b16 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 568

Warning: Undefined variable $b17 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 571

Warning: Undefined variable $b18 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 574
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/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 587

Warning: Undefined variable $trsvel_allowance in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 593

Warning: Undefined variable $daily_allowance in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 599

Warning: Undefined variable $medical_allowance in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 605


Warning: Undefined variable $b8 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 612

Warning: Undefined variable $b9 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 615

Warning: Undefined variable $b10 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 618

Warning: Undefined variable $b11 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 621

Warning: Undefined variable $b12 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 624

Warning: Undefined variable $b13 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 627

Warning: Undefined variable $b15 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 630

Warning: Undefined variable $b16 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 633

Warning: Undefined variable $b17 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 636

Warning: Undefined variable $b18 in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 639

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

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

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

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

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

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 657

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 657
Welfare Fund

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

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

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

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

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 667

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

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 683

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 683

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 686

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 686

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 689

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 689

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 692

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 692

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 695

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 695


Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 704

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 704

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 709

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 709

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 714

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 714


Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 720

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 720

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 725

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 725

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 730

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 730


Warning: Undefined variable $eps in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 737

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 740

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 740

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 745

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 745

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 750

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 750

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 755

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 755

Warning: Undefined variable $employeeInfos in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 760

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/demo_bk/resources/views/hr/salarySlip/employeeSalarySlipForm.blade.php on line 760
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