PHP Classes

File: resources/views/backend/pages/lecture/index.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Devs Hunt   resources/views/backend/pages/lecture/index.blade.php   Download  
File: resources/views/backend/pages/lecture/index.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Devs Hunt
Manage courses and student enrolment
Author: By
Last change:
Date: 1 month ago
Size: 580 bytes
 

Contents

Class file image Download
@extends('backend.layouts.master')

@section('title')
    {{ $course->title }} lectures
@endsection

@section('page-right-side')
    <a href="{{ route('admin.lessons.create', $course->id) }}" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i
            class="fas fa-plus-circle fa-sm text-white-50"></i>
        New Lecture
    </a>
@endsection

@section('admin-content')
    <div class="card card-body">
        {{ $dataTable->table() }}
    </div>
@endsection

@section('scripts')
    {{ $dataTable->scripts(attributes: ['type' => 'module']) }}
@endsection