@if(empty(!$permissions['view_work_schedule']) && $permissions['view_work_schedule'] === true)
On Hold Completed Scheduled
@else
Access Denied! You do not have permission to view this page.
@endif {{----}} @php // Map day names to FullCalendar indexes $dayMap = [ 'Sunday' => 0, 'Monday' => 1, 'Tuesday' => 2, 'Wednesday' => 3, 'Thursday' => 4, 'Friday' => 5, 'Saturday' => 6 ]; // Convert weekOffDays to FullCalendar hiddenDays indexes $hiddenDays = []; foreach($weekOffDays as $day) { if(isset($dayMap[$day])) { $hiddenDays[] = $dayMap[$day]; } } @endphp {{-- @include('proedge.modal.project.edit_phase')--}} {{-- --}}
{{-- Don't load app.js on calendar page as it conflicts with FullCalendar v3 --}} {{-- --}}