@extends('layouts.app') @section('title') All Employees @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

@if($already_exist == 0) @endif

PAYSTATEMENT

{{date('F', mktime(0, 0, 0, $month))}} {{$year}}




Employee:

{{$HrmEmployees->name}}


Project Name:

FGI INVESTMENT


Department:

{{$HrmEmployeeDepartmentAndCity->department ? $HrmEmployeeDepartmentAndCity->department->department_name : ''}}

{{-- companyDetail','accountDetail','docunmentDetail','earningDeduction --}}

Bank Name:

{{$HrmEmployees->account_detail ? $HrmEmployees->account_detail->bank_name: ''}}


Employee ID:

{{$HrmEmployees->company_detail ? $HrmEmployees->company_detail->employee_code: '' }}


Designation:

{{$HrmEmployees->company_detail->designation ? $HrmEmployees->company_detail->designation->name : ''}}


City:

{{$HrmEmployeeDepartmentAndCity ? $HrmEmployeeDepartmentAndCity->city->name : ''}}


Bank Account:

{{$HrmEmployees->account_detail ? $HrmEmployees->account_detail->account_no : ''}}


Employment Type:

{{$HrmEmployees->company_detail ? $HrmEmployees->company_detail->contract_type : ''}}


Date of Joining:

{{date('d-F-Y',strtotime($HrmEmployees->company_detail ? $HrmEmployees->company_detail->date_of_joining : ''))}}


CNIC:

{{$HrmEmployees->cnic}}


Service Period:

54 years(s), 11 month(s), 2 day(s)



Earnings

@php $total_earning = 0; @endphp @foreach($hrm_employee_earning as $list)

{{$list->title}}

{{number_format($list->amount , 2)}}

@php $total_earning += $list->amount; @endphp @endforeach

Total Earnings

{{number_format($total_earning , 2)}}


Benevolent Fund

Employee B.f contribution till date:

{{number_format($total_benevolent_found - $employee_benevolent_found,2)}}

Employeer B.f contribution:

{{number_format($employee_benevolent_found,2)}}

Employeer B.f contribution till date:

{{number_format($total_benevolent_found,2)}}

Deductions

@php $total_deduction = 0; @endphp

{{$type}}

{{number_format($HrmEmployeeLoan , 2)}}

Tax

{{number_format($total_tax_amount , 2)}}

Employee Bf contribution

{{number_format($employee_benevolent_found , 2)}}

@foreach($hrm_employee_deduction as $list)

{{$list->title}}

{{number_format($list->amount , 2)}}

@php $total_deduction += $list->amount; @endphp @endforeach
@php /*+ $late_fine + $total_absent_fine*/ $total_deduction = $total_deduction; @endphp

Total Deductions

{{ number_format($total_deduction + $total_tax_amount + $employee_benevolent_found + $HrmEmployeeLoan, 2 )}}


{{-- Net Salary --}}

Total Net Salary
{{number_format( $total_earning - ($total_deduction + $total_tax_amount + $employee_benevolent_found + $HrmEmployeeLoan) , 2 )}}

Income Tax

Taxable Income
Tax Slab
Tax Chargeable
Tax Credit | Ad
Tax Deducted
Tax Payable
{{number_format($total_earning * 12 , 2)}}
{{$tax_slab }}
{{number_format($total_tax_amount * 12)}}
{{number_format($totalfind * $total_tax_amount)}}
{{ number_format( ($total_tax_amount * 12 ) - ($totalfind * $total_tax_amount), 2 ) }}
@stop @section('js') @stop