2018-02-09 09:09:36 +08:00
|
|
|
<?php
|
|
|
|
|
2018-03-01 05:16:36 +08:00
|
|
|
# This is the admin path. Comment this out if you don't have an admin panel component.
|
2018-02-09 09:09:36 +08:00
|
|
|
Route::group([], function () {
|
|
|
|
Route::get('/', 'AdminController@index');
|
|
|
|
});
|