@extends('layouts.nursery') @section('title', 'ملف ولي الأمر — '.$guardian->name) @section('content')
← أولياء الأمور

{{ $guardian->name }}

@if($canManage && $portalEnabled)
@csrf
@if($portalActive)
@csrf @method('DELETE')
@endif
@endif

بيانات التواصل

الجوال
{{ $guardian->phone ?: '—' }}
البريد
{{ $guardian->email ?: '—' }}
حالة البوابة
@if($portalActive) مفعّل @else غير مفعّل @endif
آخر دخول
{{ $guardian->portal_last_login_at?->format('Y-m-d H:i') ?? '—' }}
@if($guardian->portal_invited_at)
تاريخ الدعوة
{{ $guardian->portal_invited_at->format('Y-m-d H:i') }}
@endif

الأطفال المرتبطون

{{ $children->count() }} طفل مرتبط بهذا ولي الأمر

@if($children->isEmpty())

لا يوجد أطفال مرتبطون بهذا ولي الأمر.

@else
@foreach($children as $child) @endforeach
الطفل الفصل الحالة إجراءات
{{ $child->name }} {{ $child->activeEnrollment?->classroom?->name ?? '—' }} @if($child->status === 'active') نشط @else مؤرشف @endif الملف
@endif
@endsection