@extends('layout.app') @section('title') {{ __('الملف الشخصي للطالب') }} @stop @section('css') @stop @section('content')

{{ $student->name }}

{{-- avatar --}}

{{ __('الاسم:') }} {{ $student->name }}

{{ __('السجل:') }} {{ $student->log }}

{{ __('تاريخ الميلاد:') }} {{ $student->date }}

{{ __('حالة القيد:') }} {{ $student->status }}

{{ __('اسم ولي الامر:') }} {{ $student->pname }}

{{ __('هاتف ولي الامر:') }} {{ $student->pphon }}

{{ __('الصف:') }} {{ $student->class->name ?? 'لا ينتمي لصف' }}

{{ __('النقل المدرسي:') }} {{ $student->transport->name ?? 'غير محدد' }}

{{ __('تاريخ الالتحاق:') }} {{ $student->created_at}}

{{ __('عدد أيام الغياب:') }} {{ $student->count_absenc() }}

@endsection @section('js') @stop