@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'المتابعة السلوكية' : 'Behavior Tracking') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')
@csrf

{{ $isArabic ? 'واقعة سلوكية' : 'Behavior incident' }}

@csrf

{{ $isArabic ? 'خطة تعديل' : 'Behavior plan' }}

{{ $isArabic ? 'الوقائع السلوكية' : 'Behavior incidents' }}

@if($incidents->count() > 0) @foreach($incidents as $incident)

{{ $incident->student?->name ?? '—' }} • {{ $incident->summary }}

{{ $incident->occurred_on?->format('Y-m-d') }} • {{ $incident->severity }} • {{ $incident->status }}

@endforeach @endif

{{ $isArabic ? 'خطط التعديل' : 'Behavior plans' }}

@if($plans->count() > 0) @foreach($plans as $plan)

{{ $plan->student?->name ?? '—' }} • {{ $plan->title }}

{{ $plan->status }}

{{ $plan->goal }}

@csrf
@endforeach @endif
@endsection