@extends('layouts.app') @use('SimpleSoftwareIO\QrCode\Facades\QrCode') @section('title', 'Weekly Programmes - International Delegates') @section('content')

Weekly International Programmes

Manage weekly schedules and attendee logs for international delegates.

@if($activeProgramme)
Active Event

{{ $activeProgramme->title }}

@if($activeProgramme->theme)
Theme

"{{ $activeProgramme->theme }}"

@endif
{{ $activeProgramme->start_date->format('M d, Y') }} — {{ $activeProgramme->end_date->format('M d, Y') }}
{{ number_format($activeProgramme->attendees_count) }} Delegates Checked In
{!! QrCode::size(140)->generate(route('admin.programmes.show', $activeProgramme->id)) !!}
Scan to view live attendee portal
@else

No active weekly programme.

Create a new programme to set it as active.

@endif
@forelse($pastProgrammes as $prog) @empty @endforelse
Programme Title Dates Delegates Actions
{{ $prog->title }} @if($prog->theme) {{ Str::limit($prog->theme, 50) }} @endif {{ $prog->start_date->format('M d') }} - {{ $prog->end_date->format('M d, Y') }} {{ $prog->attendees_count }} View
@csrf
No past programmes archived.
@endsection