@canany(['hr_manager_hq', 'holidays_adjustment']) @extends('adminlte::page') @section('title', config('adminlte.title') . ' | Edit Holidays Adjustment') @section('content_header')

{{ $subtitle }}

@stop @section('content')
@if (session('success')) @endif @if (session('error')) @endif
@if (is_null($employee->workingdays))
{{ $employee->name }}'s' working days are not set.
Please configure {{ $employee->name }}'s working days click here here.
@endif @include('admin.holidays_adjustment.partial.toil', [ 'employee' => $employee, ]) @include('admin.holidays_adjustment.partial.book-holiday', [ 'employee' => $employee, ])
@include('admin.holidays_adjustment.partial.balance-data', [ 'employee' => $employee, 'nextBalanceYear' => $nextBalanceYear, 'holidayAdjust' => $holidayAdjust, ]) @include('admin.holidays_adjustment.partial.holiday-record', [ 'employee' => $employee, 'holidayData' => $holidayData, ])
{{-- This script might be the same as the public/js/ --}} @stop @section('footer')   @stop @endcan