@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'بوابة ولي الأمر' : 'Parent Portal') @section('skip_page_hero', true) @php $isArabic = app()->getLocale() === 'ar'; @endphp @section('content')
{{-- Hero --}}

{{ $isArabic ? 'بوابة ولي الأمر' : 'Parent Portal' }}

{{ $isArabic ? 'متابعة الأبناء من شاشة واحدة' : 'Track Every Child From One Screen' }}

{{ $isArabic ? 'الأبناء' : 'Children' }}

{{ $summary['children_count'] }}

{{ $isArabic ? 'مهام مفتوحة' : 'Open Tasks' }}

{{ $summary['open_tasks'] }}

{{ $isArabic ? 'متأخرة' : 'Late' }}

{{ $summary['late_assignments'] }}

{{-- Summary Stats --}}

{{ $isArabic ? 'متوسط الدرجات' : 'Avg. Grade' }}

{{ $summary['avg_grade'] ? round($summary['avg_grade'], 1) : '—' }}

{{ $isArabic ? 'متوسط الحضور' : 'Avg. Attendance' }}

{{ $summary['avg_attendance'] ? round($summary['avg_attendance']).'%' : '—' }}

{{ $isArabic ? 'واجبات متأخرة' : 'Late Assignments' }}

{{ $summary['late_assignments'] }}

{{ $isArabic ? 'مهام قادمة' : 'Pending Tasks' }}

{{ $summary['open_tasks'] }}

{{-- Children Cards --}}

{{ $isArabic ? 'الأبناء' : 'Children' }}

{{ $isArabic ? 'مراسلة معلم' : 'Message Teacher' }}
@if($childrenData->isEmpty())

{{ $isArabic ? 'لا يوجد أبناء مرتبطون بحسابك.' : 'No children linked to your account.' }}

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

{{ $child['name'] }}

{{ $child['class'] }}

@if($child['stage'])

{{ $child['stage'] }}

@endif
{{ $child['grade_avg'] !== null ? $child['grade_avg'] : '—' }} {{ $isArabic ? 'المعدل' : 'Grade' }}
{{ $child['attendance'] !== null ? $child['attendance'].'%' : '—' }} {{ $isArabic ? 'الحضور' : 'Attend.' }}
{{ $child['late'] }} {{ $isArabic ? 'متأخرة' : 'Late' }}
@endforeach
@endif
{{-- Quick Links --}}
{{ $isArabic ? 'الاستفسارات' : 'Inquiries' }}
{{ $isArabic ? 'الرعاية الاجتماعية' : 'Social Care' }}
{{ $isArabic ? 'مراسلة معلم' : 'Message Teacher' }}
{{ $isArabic ? 'الدعم' : 'Support' }}
@endsection