@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Exam List')) @section('header-title')

{{ __('Showing Exams for - ') . $course->title }}

@endsection @section('content')
@forelse($exams as $exam) @empty @endforelse
# {{ __('Exam Title') }} {{ __('Total Questions') }} {{ __('Duration') }} {{ __('Mark Per Question') }} {{ __('Pass Marks') }} {{ __('Action') }}
{{ generateID($loop->iteration) }} @if (strlen($exam->title) > 50) {{ substr($exam->title, 0, 50) . '...' }} @else {{ $exam->title }} @endif {{ $exam->questions->count() }} {{ $exam->duration }} {{ $exam->mark_per_question }} {{ $exam->pass_marks }} {{ __('Edit Exam') }} {{ __('Delete Exam') }}
{{ __('No Exam Available') }}
{{ $exams->links() }}
@endsection