PHP Classes

File: src/stubs/cms/core/admin/adminroutes.php

Recommend this page to a friend!
  Classes of Shun Ram   Laravel Admin   src/stubs/cms/core/admin/adminroutes.php   Download  
File: src/stubs/cms/core/admin/adminroutes.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel Admin
Manage users and the site content they publish
Author: By
Last change:
Date: 1 year ago
Size: 278 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Support\Facades\Route;

Route::group([], function () {
   
/*
     * backend dashboard
     */
   
Route::get('/', 'AdminAuth@dashboard')->name('backenddashboard');

   
Route::get('logout', 'AdminAuth@logout')->name('log_out_from_admin');
});