����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.142.244.250 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/notice/ |
Upload File : |
@extends('layouts.instructor') @section('breadcrumb') <div class="page-banner-content text-center"> <h3 class="page-banner-heading text-white pb-15"> {{__('Notice List')}} </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('notice-board.course-notice.index') }}">{{ __('Notice Board Course List') }}</a></li> <li class="breadcrumb-item font-14 active" aria-current="page">{{__('Notice List')}}</li> </ol> </nav> </div> @endsection @section('content') <div class="instructor-profile-right-part"> <div class="instructor-quiz-list-page instructor-notice-list-page"> <div class="instructor-my-courses-title d-flex justify-content-between align-items-center"> <h6>{{ __(@$course->title) }}</h6> </div> <div class="row"> <div class="col-12"> @if(count($notices) > 0) <div class="table-responsive table-responsive-xl"> <table class="table"> <thead> <tr> <th scope="col">{{__('Notice_date')}}</th> <th scope="col">{{__('Notice_topic')}}</th> <th scope="col">{{__('Action')}}</th> </tr> </thead> <tbody> @foreach($notices as $notice) <tr> <td>{{ $notice->created_at->format('d/m/Y') }}</td> <td>{{ Str::limit($notice->topic, 45) }}</td> <td> <div class="red-blue-action-btns"> <a href="{{ route('notice-board.view', [$course->uuid, $notice->uuid]) }}" class="theme-btn theme-button1 green-theme-btn default-hover-btn"> <span class="iconify" data-icon="akar-icons:eye"></span>{{__('View')}}</a> <a href="{{ route('notice-board.edit', [$course->uuid, $notice->uuid]) }}" class="theme-btn default-edit-btn-blue"> <span class="iconify" data-icon="bxs:edit"></span>{{__('Edit')}}</a> <a href="javascript:void(0);" data-url="{{ route('notice-board.delete', [$notice->uuid]) }}" class="theme-btn default-delete-btn-red delete"> <span class="iconify" data-icon="gg:trash"></span>{{__('Delete')}} </a> </div> </td> </tr> @endforeach </tbody> </table> </div> <!-- Pagination Start --> @if(@$notices->hasPages()) {{ @$notices->links('frontend.paginate.paginate') }} @endif <!-- Pagination End --> @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 Notice')}}</h5> </div> <!-- If there is no data Show Empty Design End --> @endif <!-- Add Notice Button Start --> <a href="{{ route('notice-board.course-notice.index') }}" class="theme-btn theme-button3 quiz-back-btn default-hover-btn">{{__('Back')}}</a> <a href="{{ route('notice-board.create', $course->uuid) }}" class="add-resources-btn theme-btn theme-button1 default-hover-btn">{{__('Add Notice')}}</a> <!-- Add Notice Button End --> </div> </div> </div> </div> @endsection