@extends('layouts.app') @section('title', 'Add Additional Agenda Item') @push('stylesheets') @endpush @section('contents') @php $existingExclude = $existingCatalogExclude ?? []; $guestRows = old('guests', [['label' => '', 'email' => '']]); if (! is_array($guestRows) || $guestRows === []) { $guestRows = [['label' => '', 'email' => '']]; } @endphp

Add Additional Agenda Item

{{ $meeting->reference_id }} · {{ $meeting->title }}
Back to meeting
@if ($noticeAlreadyIssued ?? false)
A meeting notice has already been issued. Adding agenda items will keep the current meeting status and send a revised notice (with PDF) to participants.
@else
The meeting notice has not been issued yet. New schemes will be added to the agenda only; the first notice version is created when the notice is generated.
@endif
@csrf

Schemes / PCNs

Select one or more schemes that are not already on this meeting.

@php $oldLinks = old('subject_links', [['pc_form_id' => '', 'project_concept_note_id' => '', 'project_id' => '']]); @endphp @foreach ($oldLinks as $idx => $row)
@endforeach
@error('subject_links')
{{ $message }}
@enderror

Additional participants (optional)

Existing participants stay on the meeting. Only new people need to be selected here.
@foreach ($guestRows as $idx => $g) @endforeach
Name Email Actions
@if ($idx === 0) @else @endif
Cancel
@endsection @push('scripts') @endpush