<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application.
| Now create something great!
|
*/

Route::prefix('$SNAKE_NAME$')->group(function () {
    Route::get('/', '$STUDLY_NAME$Controller@index')->middleware('auth');
});
