{{-- HEADER & FILTERS CONTROL PANEL --}}
{{-- Top Header Section --}}

{{ $student->name ?? __('Student Support') }}

{{ __('Review intervention strategies and home support logs') }}

{{-- Filter Bar Section --}}
{{-- 1. CHILD SELECTOR --}}

{{ __('Individualized academic and behavioral support plans') }}

{{-- PLANS GRID --}}
@forelse($interventions as $plan)

{{ $plan->title }}

{{ $plan->status }}

{{ $plan->reason }}

{{ __('Teacher') }}

{{ $plan->teacher->name }}

{{ __('Started') }}

{{ $plan->start_date->format('M d, Y') }}

{{ $plan->actions->count() }} {{ __('Timeline Updates') }} {{ __('View Profile') }}
@empty
@endforelse