2018-02-09 09:09:36 +08:00
|
|
|
<?php
|
|
|
|
|
2019-08-27 00:32:46 +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');
|
2018-03-01 05:16:36 +08:00
|
|
|
Route::get('/create', 'AdminController@create');
|
2018-02-09 09:09:36 +08:00
|
|
|
});
|