����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.191.201.27 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"> {{ __('Quiz') }} </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 active" aria-current="page">{{ __('Quiz List') }}</li> </ol> </nav> </div> @endsection @section('content') <div class="instructor-profile-right-part"> <div class="instructor-quiz-list-page"> <div class="row m-0 quiz-list-page-top mb-4"> <div class="col-md-7"> <div class="quiz-list-page-top-left"> <h5 class="text-white mb-2"> {{ __('Course Name') }}: {{ $course->title }}</h5> <p class="text-white mb-4">{{ __('Quiz List') }}</p> <a href="{{route('exam.create', [$course->uuid])}}" class="create-new-quiz-btn font-medium">{{__('Create New Quiz')}}</a> </div> </div> <div class="col-md-5"> <div class="quiz-list-page-top-right"> <img src="{{ asset('frontend/assets/img/quiz-img/quiz-text-img.png') }}" alt="img" class="img-fluid"> </div> </div> </div> <div class="row"> <div class="col-12"> @if($exams->count() > 0) <div class="table-responsive"> <table class="table"> <thead> <tr> <th scope="col">{{ __('Quiz Name') }}</th> <th scope="col">{{ __('Quiz Types') }}</th> <th scope="col">{{ __('Total Question') }}</th> <th scope="col">{{ __('Status') }}</th> <th scope="col">{{ __('Add Question') }}</th> <th scope="col">{{ __('Action') }}</th> </tr> </thead> <tbody> @foreach($exams as $exam) <tr> <td>{{$exam->name}}</td> <td>{{ucfirst(str_replace("_", " ", $exam->type))}}</td> <td>{{$exam->questions->count()}}</td> <td> @if($exam->status == 1) <div class="quiz-status">{{ __('Publish') }}</div> @else <div class="quiz-status unpublish">{{ __('Unpublish') }}</div> @endif </td> <td><a href="{{route('exam.question', [$exam->uuid])}}" class="add-question-btn theme-btn theme-button1 default-hover-btn">{{ __('Add Question') }}</a></td> <td> <div class="dropdown"> <button type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false"> <span class="iconify" data-icon="charm:menu-meatball"></span> </button> <ul class="dropdown-menu dropdown-menu-end" aria-labelledby="dropdownMenuButton1"> @if($exam->status == 1) <li><a class="dropdown-item" href="{{route('exam.status-change', [$exam->uuid, 0])}}"><span class="iconify" data-icon="ic:outline-publish"></span>{{ __('Unpublish') }}</a></li> @else <li><a class="dropdown-item" href="{{route('exam.status-change', [$exam->uuid, 1])}}"><span class="iconify" data-icon="ic:outline-publish"></span>{{ __('Publish') }}</a></li> @endif <li><a class="dropdown-item" href="{{route('exam.view', [$exam->uuid])}}"><span class="iconify" data-icon="carbon:view"></span>{{ __('View') }}</a></li> <li><a class="dropdown-item" href="{{route('exam.edit', [$exam->uuid])}}"><span class="iconify" data-icon="clarity:note-edit-line"></span>{{ __('Edit') }}</a></li> <li><a href="{{route('exam.delete', [$exam->uuid])}}" class="dropdown-item" ><span class="iconify" data-icon="gg:trash"></span>{{ __('Delete') }}</a></li> </ul> </div> </td> </tr> @endforeach </tbody> </table> </div> @else <!-- If there is no data Show Empty Design Start --> <div class="empty-data"> <img src="{{ asset('frontend/assets/img/empty-data-img.png') }}" alt="img" class="img-fluid"> <h5 class="my-3">{{ __('Empty Quiz') }}</h5> </div> <!-- If there is no data Show Empty Design End --> @endif </div> </div> </div> </div> @endsection