2021-04-17 01:29:18 +03:00

14 lines
257 B
Plaintext

<?php
use Illuminate\Support\Facades\Route;
/**
* 'admin' middleware and '$ALIAS$' prefix applied to all routes (including names)
*
* @see \App\Providers\Route::register
*/
Route::admin('$ALIAS$', function () {
Route::get('/', 'Main@index');
});