@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{ trans('labels.educational_centers') }}

@if ($data['class']->status == 0)
@endif @endsection @section('content')
@if ($data['student'] ?? null) @php($student = $data['student']->student)
@method('PATCH') @csrf
@elseif(request()->student_id)
هذا الطالب لم يحضر او البيانات المدخلة خطأ
@endif
@can('educational-centers-data')
طلاب حاضرون بدون درجات

{{ $data['studentsWithoutDegree'] }}

@endcan @foreach ($data['students'] as $attend) @endforeach
{{ trans('labels.student_id') }} {{ trans('labels.name') }} {{ trans('labels.email') }} {{ trans('labels.phone') }} رقم ولى الامر الحضور {{ trans('labels.degree') }} {{ trans('labels.reason') }}
{{ $attend->student->student_id }} {{ $attend->student->name }} {{ $attend->student->email }} {{ $attend->student->phone }} {{ $attend->student->parent_phone }} {{ $attend->attendance ? 'حاضر' : 'غائب' }} {{ $attend->degree }} {{ $attend->reason }}
{{-- @endif --}} @endsection @section('script') @endsection