PHP Classes

File: routes/backend/settings.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   routes/backend/settings.php   Download  
File: routes/backend/settings.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: 169 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Support\Facades\Route;

Route::middleware('auth:admin')->get('/settings', function () {
    return
view('backend.settings');
})->
name('settings');