I am a novice in web developing with Laravel 5. I installed asGgardCMS and After seeing asgardCms codes, I found that there is nothing codes in app/Http/route.php file and r
The group() method on Laravel's Route, can accept filename, so we can something like this:
// web.php Route::prefix('admin') ->group(base_path('routes/admin.php')); // admin.php Route::get('/', 'AdminController@index');