14 lines
257 B
Plaintext
Raw Normal View History

2019-11-16 10:21:14 +03:00
<?php
2020-03-04 11:09:28 +03:00
use Illuminate\Support\Facades\Route;
2021-04-17 01:29:18 +03: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 10:21:14 +03:00
});