@extends('hr_main') @section('title', '| '. $data['pageTitle'] ) @section('stylesheets') @endsection @section('content')
{{ $data['pageTitle'] }}
{{-- Show hold time periods if any found --}} @if($data['holdRecord'] != null)


This file process hold from date {{ date('d-m-Y', strtotime($data['holdRecord']->start_from)) }} @if($data['holdRecord']->end_to != null) to {{ date('d-m-Y', strtotime($data['holdRecord']->end_to)) }} @endif

@endif {{-- Employee Related Information --}} @if($data['emp_info']) @include('hr.finalPayment.employeeInfoTable') @endif {{-- Employee Salary Related Information --}} @if($data['emp_salary_info']) @include('hr.finalPayment.salaryInfoTable') @endif {{-- Employee Leave Related Information --}} @if($data['emp_leave_info']) @include('hr.finalPayment.leaveInfoTable') @endif {{-- Reporting Bosses --}} @if($data['boss_type'] == 'Admin Boss') @include('hr.finalPayment.adminBossForm') @else @include('hr.finalPayment.bossForm') @endif
{{-- Modal --}} {{-- Modal --}}
@endsection