@extends('layouts.app') @section('content')
تفاصيل الطالب
{{ $student->name }}
الفصل : {{ $student->class_room->name }}
الاتوبيس : {{ $student->bus->name }}
العنوان : {{ $student->location }}
بيانات ولى الأمر
الأسم : {{ $student->user->name }}
الهاتف : {{ $student->user->mobile_country_code }} - {{ $student->user->mobile }}
{{--
العنوان : {{ $student->location }}
--}}
@if (count($student->illnesses) > 0)
يعانى من أمراض
@foreach ($student->illnesses as $k => $illness)
{{ $k + 1 }} ) {{ $illness->disease }}
@endforeach
@endif

عدد الفواتير الغير مدفوعة

عدد التقيمات

عدد التعليقات

عدد أستعائات ولى الأمر

عدد الأعتذرات

@endsection @section('js') @endsection