@extends('layouts.admin-master') @section('title') قائمة بالطلاب الخاصة بالاختبار : {{$exam->name}} - الصف : {{$exam->sclass->name}} - المادة : {{$exam->course->name}} @endsection @section('button')
الاختبارات
@endsection @section('content')
@forelse($exam->tests as $test) @empty @endforelse
# اسم الطالب العلامة الإدارة
{{ $loop->iteration }} {{$test->user->name}} @if($test->total_points != -1) {{$test->total_points}} @endif @if($test->total_points == -1) استعراض وتصحيح @else استعراض @endif
لا يوجد طلاب
@endsection