PHP Classes

File: routes/backend/channel.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   routes/backend/channel.php   Download  
File: routes/backend/channel.php
Role: Example script
Content type: text/plain
Description: Example script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 433 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Support\Facades\Route;

Route::middleware('auth:admin')->group(function () {
   
Route::get('/users', function () {
        return
view('backend.channel.user');
    })->
name('user');
   
Route::get('/channels', function () {
        return
view('backend.channel.channel');
    })->
name('channel');
   
Route::get('/videos', function () {
        return
view('backend.channel.video');
    })->
name('video');
});