phpvms/resources/stubs/modules/routes.stub
2020-09-28 16:04:51 -04:00

12 lines
279 B
Plaintext

<?php
Route::get('/', 'IndexController@index');
/*
* To register a route that needs to be authentication, wrap it in a
* Route::group() with the auth middleware
*/
// Route::group(['middleware' => 'auth'], function() {
// Route::get('/', 'IndexController@index');
// })