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

{{ __('تفاصيل نقاط الطالب') }}

{{ __(' اسم الطالب') }} : @if ($student_value->student) {{ $student_value->student->name }} @endif
{{ __(' الصف') }} : @if ($student_value->class) {{ $student_value->class->name }} @endif
{{ __(' الفصل') }} : @if ($student_value->grade) {{ $student_value->grade->name }} @endif
{{ __(' مجموع النقاط') }} : {{ $student_value->mvalue }} {{ $student_value->value - $student_value->mvalue }} {{ $student_value->value }}
{{-- --}} @foreach ($points as $point) @endforeach
# {{ __('المعيار') }} {{ __('القيمة') }} {{ __('تاريخ التقييم') }} {{ __(' ملاحظات') }} {{ __(' حدف') }}
{{ $loop->iteration }} @if ($point->s_assessment) {{ $point->s_assessment->name }} @endif {{ $point->value }} {{ $point->date }} {{ $point->notes }} حدف
@endsection @section('js') {{-- --}} @stop