2019-11-16 07:21:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
2020-03-04 08:09:28 +00:00
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
2021-04-16 22:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* 'admin' middleware and '$ALIAS$' prefix applied to all routes (including names)
|
|
|
|
|
*
|
|
|
|
|
* @see \App\Providers\Route::register
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
Route::admin('$ALIAS$', function () {
|
|
|
|
|
Route::get('/', 'Main@index');
|
2019-11-16 07:21:14 +00:00
|
|
|
});
|