@extends('layouts.nursery-portal') @section('title', $child->name) @section('content')
← أطفالي

{{ $child->name }}

{{ $child->activeEnrollment?->classroom?->name ?? 'غير معين لفصل' }} @if($child->code)·{{ $child->code }}@endif

حالة اليوم

{{ $todayStatusLabel }}

@if($todayLog?->checked_in_at)

وقت الحضور: {{ $todayLog->checked_in_at->format('H:i') }}

@endif @if($todayLog?->checked_out_at)

وقت الانصراف: {{ $todayLog->checked_out_at->format('H:i') }}

@endif

يوم الطفل

@forelse($dailySummary ?? [] as $group)

{{ $group['label'] }}

    @foreach($group['lines'] as $line)
  • {{ $line }}
  • @endforeach
@empty

لا يوجد ملخص لليوم بعد.

@endforelse

المعلومات الصحية

الحساسية:
{{ $child->allergies ?: '—' }}
الأمراض:
{{ $child->diseases ?: '—' }}
ملاحظات:
{{ $child->health_notes ?: '—' }}

الأدوية

عرض للاطلاع فقط — لا يمكن التعديل من البوابة.

@include('nursery.partials.medications-readonly-table', ['medications' => $child->medications])
@endsection @section('bottom_nav') @include('nursery.partials.portal-nav') @endsection