@extends('layouts.app') @section('title', $app_setting['name'] . ' | '.__('Exam List')) @section('content')
| # | {{ __('Exam Title') }} | {{ __('Total Questions') }} | {{ __('Duration') }} | {{ __('Mark Per Question') }} | {{ __('Pass Marks') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| {{ $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 }} | |
{{ __('No Exam Available') }} |
||||||