@extends('backEnd.layouts.master') @section('title', 'Support Shifts') @section('content')
| Type | Time | Days | Status | |
|---|---|---|---|---|
| {{ ucfirst($shift->shift_type) }} | {{ substr($shift->start_time, 0, 5) }} – {{ substr($shift->end_time, 0, 5) }} | @foreach($shift->working_days ?? [] as $d) {{ $dayLabels[$d] ?? $d }} @endforeach | {{ $shift->is_active ? 'Active' : 'Off' }} @if($shift->isCurrentlyOnShift())Now@endif | |
| No shifts scheduled. | ||||