@extends('layouts.organization') @section('breadcrumb')

{{__('My Courses')}}

@endsection @section('content')
{{$title}}
{{__('Back')}}
@if($take_exams->count() > 0)
@foreach($take_exams as $k => $take_exam) @if($take_exam->user) @endif @endforeach
{{__('Position')}} {{__('Student')}} {{__('Quiz Mark')}} {{__('Obtained Mark')}}
{{$k + 1}}
img
{{$take_exam->user->name}}
{{get_total_score($exam->id)}} {{get_student_by_student_score($exam->id, null)}}
@if($take_exams->hasPages()) {{ $take_exams->links('frontend.paginate.paginate') }} @endif @else
img
{{__('Empty Participant')}}
@endif
@endsection