����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.140.199.3 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/resources/views/instructor/course/exam/ |
Upload File : |
@extends('layouts.instructor') @section('breadcrumb') <div class="page-banner-content text-center"> <h3 class="page-banner-heading text-white pb-15"> {{__('My Courses')}} </h3> <!-- Breadcrumb Start--> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center"> <li class="breadcrumb-item font-14"><a href="{{route('instructor.dashboard')}}">{{__('Dashboard')}}</a></li> <li class="breadcrumb-item font-14" aria-current="page"><a href="{{ route('instructor.course') }}">{{__('My Courses')}}</a></li> <li class="breadcrumb-item font-14"><a href="{{ route('exam.index', $exam->course->uuid) }}">{{ __('Quiz List') }}</a></li> <li class="breadcrumb-item font-14 active" aria-current="page">{{ __('True False') }}</li> </ol> </nav> </div> @endsection @section('content') <div class="instructor-profile-right-part"> <div class="instructor-quiz-list-page instructor-quiz-details-page"> <div class="instructor-my-courses-title d-flex justify-content-between align-items-center"> <h6>{{$exam->name}}</h6> <p>{{ @$exam->course->title }}</p> </div> <div class="row"> <div class="col-12"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th scope="col">{{ __('Question') }}</th> <th scope="col">{{ __('True') }}</th> <th scope="col">{{ __('False') }}</th> <th scope="col">{{ __('Action') }}</th> </tr> </thead> <tbody> @if($exam->questions->count() > 0) @foreach($exam->questions as $key => $question) <tr> <td>{{\Illuminate\Support\Str::words($question->name, 1)}}</td> @foreach($question->options as $key_option => $option) <td> @if($option->is_correct_answer == 'yes') <span class="iconify" data-icon="bi:check-lg"></span> @endif {{$option->name}} </td> @endforeach <td> <div class="quiz-details-action-btns"> <a href="{{route('exam.edit-true-false', [$question->uuid])}}" class="quiz-details-btn"><span class="iconify" data-icon="bxs:edit"></span></a> <a href="javascript:void(0);" data-url="{{route('exam.delete-question', [$question->uuid])}}" class="quiz-details-btn delete"><span class="iconify" data-icon="gg:trash"></span></a> </div> </td> </tr> @endforeach @endif </tbody> </table> </div> <a href="{{route('exam.index', [$exam->course->uuid])}}" class="theme-btn theme-button3 quiz-back-btn default-hover-btn">{{ __('Back to Quiz') }}</a> </div> </div> </div> </div> @endsection @push('style') @endpush @push('script') <script src="{{asset('frontend/assets/js/custom/form-validation.js')}}"></script> @endpush