@extends('layouts.organization') @section('breadcrumb')
@endsection @section('content'){{ __('Quiz Name') }} | {{ __('Quiz Types') }} | {{ __('Total Question') }} | {{ __('Status') }} | {{ __('Add Question') }} | {{ __('Action') }} |
---|---|---|---|---|---|
{{$exam->name}} | {{ucfirst(str_replace("_", " ", $exam->type))}} | {{$exam->questions->count()}} | @if($exam->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif |
{{ __('Add Question') }} |
|