@extends('admin.layout') @section('title', 'Rekap Shift') @section('subtitle', 'Rangkuman semua master shift dan jam kerja yang dipilih') @section('content')

Total: {{ $shifts->count() }} shift

@forelse ($shifts as $shift)
{{-- Header --}}

{{ $shift->name }}

{{ $shift->sectionSchedules->count() }} jam kerja dipilih

@csrf @method('DELETE')
{{-- Selected Section Schedules --}} @if ($shift->sectionSchedules->count())
@foreach ($shift->sectionSchedules as $ss)

{{ $ss->workSection->name }}

{{ $ss->shift_label }}

{{ \Carbon\Carbon::parse($ss->start_time)->format('H:i') }} {{ \Carbon\Carbon::parse($ss->end_time)->format('H:i') }}
@endforeach
@else

Belum ada jam kerja yang dipilih.

@endif
@empty
Belum ada shift. Klik tombol "Tambah Shift" untuk memulai.
@endforelse
{{-- MODAL FORM --}} @push('scripts') @endpush @endsection