@extends('backend.layouts.app') @section('head') @endsection @section('content')
Grade | {{$exam->grade->name}} |
---|---|
Section | @php if(json_decode($exam->section_id, true) != null){ $sections = \App\Models\Section::whereIn('id', json_decode($exam->section_id, true))->get(); } @endphp @if(json_decode($exam->section_id, true) != null)@foreach ($sections as $val)
|
@endif
Date and Time | {{date('d M Y, h:i A', strtotime($exam->date_and_time))}} |
Duration | @php $hour = floor($exam->duration / 60); $min = $exam->duration % 60; @endphp{{$hour.': '.$min.'0 Hours'}} |
Instruction | {{$exam->description}} |
---|
{!!$question->name!!}
@if ($question->image != null)