����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.188.23.110 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/assignment/ |
Upload File : |
@extends('layouts.instructor') @section('breadcrumb') <div class="page-banner-content text-center"> <h3 class="page-banner-heading text-white pb-15"> {{ __('Assignment') }} </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"><a href="{{ route('instructor.course') }}">{{__('My Courses')}}</a></li> <li class="breadcrumb-item font-14 active" aria-current="page">{{ __('Assignment List') }}</li> </ol> </nav> </div> @endsection @section('content') <div class="instructor-profile-right-part"> <div class="instructor-quiz-list-page instructor-add-assignment-page"> <div class="row m-0 quiz-list-page-top mb-4"> <div class="col-md-8"> <div class="quiz-list-page-top-left"> <h5 class="text-white mb-2"> {{ __('Course Name') }}: {{ $course->title }}</h5> <p class="text-white mb-4"> {{ __('Assignment List') }} </p> <a href="{{ route('assignment.create', [$course->uuid]) }}" class="create-new-quiz-btn font-medium">{{ __('Create New Assignment') }}</a> </div> </div> <div class="col-md-4"> <div class="quiz-list-page-top-right"> <img src="{{ asset('frontend/assets/img/quiz-img/add-assignment-top.png') }}" alt="img" class="img-fluid"> </div> </div> </div> <div class="row"> <div class="col-12"> @if(count($assignments) > 0) <div class="table-responsive"> <table class="table"> <thead> <tr> <th scope="col">{{ __('Assignment Topic') }}</th> <th scope="col">{{ __('Marks') }}</th> <th scope="col">{{ __('Assessment') }}</th> <th scope="col">{{ __('Action') }}</th> </tr> </thead> <tbody> @foreach($assignments as $assignment) <tr> <td>{{ $assignment->name }}</td> <td>{{ $assignment->marks }}</td> <td><a href="{{ route('assignment.assessment.index', [$course->uuid, $assignment->uuid]) }}" class="theme-btn theme-button1 default-hover-btn">{{ __('Click Here') }}</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"> <li><a class="dropdown-item" href="{{ route('assignment.edit', [$course->uuid, $assignment->uuid]) }}"> <span class="iconify" data-icon="clarity:note-edit-line"></span>{{ __('Edit') }}</a></li> <li><a class="dropdown-item" href="{{ route('assignment.delete',$assignment->uuid) }}"> <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 Assignment') }}</h5> </div> <!-- If there is no data Show Empty Design End --> @endif </div> </div> </div> </div> @endsection