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

تقييمات طلاب الصف

{{ __('الصف') }} : @if ($classpoint->classa) {{ $classpoint->classa->name }} @endif
{{ __('تاريخ اخر تقييم') }} : {{ $classpoint->date }}
{{ __('مجموع نقاط الصف') }} : {{ $classpoint->total }}
{{ __('الفصل الدراسي') }} : @if ($classpoint->grade) {{ $classpoint->grade->name }} @endif
{{-- --}} @foreach ($values as $value) @endforeach
# {{ __('اسم الطالب') }} {{ __('مجموع النقاط') }} {{ __('مكافأة الطالب') }} {{ __('التفاصيل') }}
{{ $loop->iteration }} @if ($value->student) {{ $value->student->name }} @endif {{ $value->mvalue }} {{ $value->value - $value->mvalue }} {{ $value->value }} @if ($classpoint->classa) @if ($classpoint->classa->reward != 0 && $classpoint->total != 0 && $value->value != 0) {{ number_format($classpoint->classa->reward / ($classpoint->total / $value->value), 2) }} @endif @endif ريال عرض التفاصيل
@endsection @section('js') {{-- --}} @stop