I just created a new project of laravel version 5.5 with the laravel installer.And run the command \"php artisan make:auth\".The views and controller are generated
Hi for the group paths that you want to apply to everyone, use this method, which is my 5.5 larval version. Use the star => go to app/Http/Middleware/VerifyCsrfToken and add
protected $except = [
'/user/*'
];
This is also my user's path
Route::group(['prefix' => 'user', 'namespace' => 'User', 'as' => 'user.'] , function (){