{{ $intervention->title }}

{{ ucfirst($intervention->status) }}
✏️ {{ __('Edit') }}

{{ __('Reason') }}

{{ $intervention->reason }}

{{ __('Triggered By') }}

{{ ucwords(str_replace('_', ' ', $intervention->trigger_type)) }}

{{ __('Plan Strategy') }}

{{ $intervention->plan_description }}

@if($intervention->resolution_notes)

{{ __('Resolution Notes') }}

{{ $intervention->resolution_notes }}

@endif

{{ __('Action Timeline') }}

@if($intervention->isActive() || $intervention->status === 'monitoring') @endif
@forelse($intervention->actions as $action)

{{ $action->action_title }}

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

{{ $action->action_taken }}

@if($action->result)

↳ {{ __('Result:') }} {{ $action->result }}

@endif
{{ $action->action_type }} @if($action->parent_informed) 👪 {{ __('Parent Informed') }} @endif
@empty

{{ __('No actions logged yet.') }}

@endforelse

{{ $intervention->student->name }}

{{ __('Student') }}

{{ __('Start Date') }} {{ $intervention->start_date->format('M d, Y') }}
{{ __('Review Date') }} {{ $intervention->review_date ? $intervention->review_date->format('M d, Y') : '-' }}
@if($intervention->isActive() || $intervention->status === 'monitoring')
@csrf @method('PUT')
@endif
@csrf
@csrf @method('PUT')

{{ __('Resolving this intervention signifies the student has met the goals of this specific plan.') }}