@extends('layout.app') @section('title') {{ __('نقاط الطلاب') }} @stop @section('css') @stop @section('content')

{{ __('تقييمات الصفوف') }}

@csrf

{{ __('الفصل الدراسي') }} : @if ($grade) {{ $grade->name }} @endif
{{ __(' السنة الدراسية') }} : @if ($year) {{ $year->school_year }} @endif
{{-- --}} @foreach ($classes as $cc) @endforeach
# {{ __(' الصف') }} {{ __('مربي الصف') }} {{ __('تاريخ اخر تقييم') }} {{ __(' مجموع نقاط طلاب الصف') }} {{ __('التفاصيل') }}
{{ $loop->iteration }} @if ($cc->classa) {{ $cc->classa->name }} @endif @if ($cc->classa) @if ($cc->classa->user) {{ $cc->classa->user->name }} @else بدون مربي @endif @endif {{ $cc->date }} {{ $cc->total }} عرض التفاصيل
@endsection @section('js') {{-- --}} @stop