@extends('layouts.app') @section('title', 'Scheme Search') @push('styles') @endpush @section('contents')

Scheme Search

Find meetings by ADP, UID, or scheme name — then open Docs for Notice, MoM, Working Paper, and Track Progress.

Back to Planner

Results

{{ count($rows) }} meeting{{ count($rows) === 1 ? '' : 's' }}
@if (! $hasFilters)
Enter ADP, UID, and/or Scheme Name, then Confirm.
@elseif ($rows === [])
No meetings found for this scheme search.
@else
@foreach ($rows as $row)
{{ $row['meeting_day'] }} {{ $row['meeting_month'] }}
{{ $row['meeting_name'] }}
{{ $row['meeting_time'] }} · {{ $row['meeting_date'] }}
Meeting Type: {{ $row['meeting_type'] }} Status: {{ $row['status'] }}
@if ($row['status_tone'] === 'completed') @else @endif {{ $row['status'] }}
@endforeach
@endif
@endsection @push('scripts') @endpush