@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'الأبناء والأداء' : 'Children & Performance') @section('skip_page_hero', true) @php $isArabic = app()->getLocale() === 'ar'; $children = $children ?? collect(); @endphp @section('content')

{{ $isArabic ? 'ملف الأبناء' : 'Child Profiles' }}

{{ $isArabic ? 'الأبناء والأداء الأكاديمي' : 'Children & Academic Performance' }}

{{ $isArabic ? 'متابعة تفصيلية لكل طفل: الأداء، الحضور، الواجبات، ونقاط المتابعة التي تحتاج تدخلك.' : 'Detailed tracking for each child: performance, attendance, assignments, and the items that need your intervention.' }}

@foreach($children as $child)
{{ mb_substr($child['name'], 0, 1) }}

{{ $child['name'] }}

{{ $child['class'] }} · {{ $child['stage'] }}

{{ $isArabic ? 'المعدل' : 'Average' }}

{{ $child['grade_average'] }}

{{ $isArabic ? 'الحضور' : 'Attendance' }}

{{ $child['attendance'] }}

{{ $isArabic ? 'واجبات مفتوحة' : 'Open Assignments' }}

{{ $child['open_tasks'] }}

{{ $isArabic ? 'مادة تحتاج متابعة' : 'Needs Attention' }}

{{ $child['focus'] }}

{{ $isArabic ? 'ملاحظات المتابعة' : 'Follow-up Notes' }}

    @foreach($child['notes'] as $note)
  • {{ $note }}
  • @endforeach

{{ $isArabic ? 'الحالة الحالية' : 'Current Status' }}

{{ $child['status'] }}

{{ $child['status_hint'] }}

{{ $isArabic ? 'هذا الأسبوع' : 'This Week' }}

@foreach($child['week'] as $row)
{{ $row['label'] }} {{ $row['value'] }}
@endforeach
@endforeach
@endsection