77fe6679ce
* Update module generation #714 * Fix method signatures * Fix paths within stubs, use single provider.stub file * Add separate index controller * Update module generation #714 * Fix method signatures * Fix paths within stubs, use single provider.stub file * Update module generation Disable/lower the cache time as found as a workaround in https://github.com/nWidart/laravel-modules/issues/995 * Update editorconfig for line endings * Formatting * Formatting
12 lines
295 B
Plaintext
12 lines
295 B
Plaintext
<?php
|
|
|
|
Route::get('/', '$STUDLY_NAME$Controller@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('/', '$STUDLY_NAME$Controller@index');
|
|
// })
|