phpvms/modules/Sample/Http/Routes/admin.php

8 lines
177 B
PHP

<?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');
});