8 lines
177 B
Plaintext
8 lines
177 B
Plaintext
|
<?php
|
||
|
|
||
|
# This is the admin path. Comment this out if you don't have
|
||
|
# an admin panel component.
|
||
|
Route::group([], function () {
|
||
|
Route::get('/', 'AdminController@index');
|
||
|
});
|