{!! $row->description !!}
@php $sessionVenue= $row->venue; @endphp
@foreach($rowset as $row2)
@php if(!empty($row2->picture)): @endphp
@php endif; @endphp
{!! $row2->description !!}
@endforeach
{{ __lang('test') }} |
{{ __lang('questions') }} |
{{ __lang('opens') }} |
{{ __lang('closes') }} |
{{ __lang('minutes-allowed') }} |
{{ __lang('multiple-attempts-allowed') }} |
{{ __lang('passmark') }} |
{{ __lang('actions') }} |
@php foreach($tests as $testRow): @endphp
@php if($testRow->test_status==1): @endphp
{{ $testRow->name }} |
{{ $questionTable->getTotalQuestions($testRow->test_id) }} |
@php if(!empty($testRow->opening_date)) echo showDate('d/M/Y',$testRow->opening_date); @endphp |
@php if(!empty($testRow->closing_date)) echo showDate('d/M/Y',$testRow->closing_date); @endphp |
{{ empty($testRow->minutes)?__lang('unlimited'):$testRow->minutes }} |
{{ boolToString($testRow->allow_multiple) }} |
{{ ($testRow->passmark > 0)? $testRow->passmark.'%':__lang('ungraded') }} |
@php if( (!$studentTest->hasTest($testRow->test_id,$studentId) || !empty($testRow->allow_multiple)) && ($testRow->opening_date < time() || $testRow->opening_date == 0 ) && ($testRow->closing_date > time() || $testRow->closing_date ==0)): @endphp
{{ __lang('take-test') }}
@php endif; @endphp
|
@php endif; @endphp
@php endforeach; @endphp