{{-- BACK BUTTON --}} {{ __('Back to List') }}
{{-- LEFT COLUMN: PROFILE SUMMARY --}}
{{ $intervention->status }}

{{ $intervention->title }}

{{ __('Assigned Teacher') }}

{{ $intervention->teacher->name }}

{{ __('Plan Started') }}

{{ $intervention->start_date->format('F d, Y') }}

{{ __('Primary Reason') }}

{{ $intervention->reason }}

{{ __('Teacher\'s Strategy') }}

{{ $intervention->plan_description }}

@if($intervention->isActive() || $intervention->status === 'monitoring') @endif
{{-- RIGHT COLUMN: PROGRESS TIMELINE --}}

{{ __('Progress Timeline') }}

{{-- Vertical Line --}}
@forelse($intervention->actions as $action)
{{-- Timeline Icon --}}
@if($action->action_type === 'Parent Support') @else @endif

{{ $action->action_title }}

{{ \Carbon\Carbon::parse($action->action_date)->format('M d, Y') }}

{{ $action->action_taken }}

@if($action->result)

{{ __('Result / Observation') }}

"{{ $action->result }}"

@endif
@empty

{{ __('No timeline logs found') }}

@endforelse
{{-- ADD HOME SUPPORT MODAL --}}
@csrf

{{ __('Share updates with the teacher about support actions practiced at home.') }}