{{-- Assign Sessions — Service Manager books their team (Care Workers) onto sessions. From TeamSessionController@index: $sessions, $teamCount --}} @extends('layouts.app') @section('title', 'Assign Sessions') @section('content') @include('partials.flash')
group_add

Book your team of {{ $teamCount }} care {{ Str::plural('worker', $teamCount) }} onto upcoming sessions.

@if($sessions->isEmpty())
event_busy

No upcoming sessions

New training dates will appear here once scheduled.

@else
@foreach($sessions as $session) @endforeach
Session Date & Time Format Team Booked Action
{{ $session->title }} {{ $session->session_date->format('j M Y') }} · {{ \Carbon\Carbon::parse($session->start_time)->format('H:i') }} {{ $session->format === 'in_person' ? 'In-Person' : 'Online' }} {{ $session->team_registered_count }} / {{ $teamCount }} how_to_reg Manage
@endif @endsection