@extends('admin.layout') @section('title', 'Bagian Kerja') @section('subtitle', 'Kelola bagian kerja dan jam kerjanya') @section('content')

Daftar Bagian Kerja

{{-- Import Section (hidden by default) --}}
@forelse ($workSections as $ws)
{{-- Header --}}

{{ $ws->name }}

{{ $ws->section_schedules_count }} jam kerja {{ $ws->volunteer_assignments_count }} relawan
@csrf @method('DELETE')
{{-- Section Schedules --}} @if ($ws->sectionSchedules->count())
@foreach ($ws->sectionSchedules as $ss)
{{ $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.

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