routes:
Route::get('/', [ 'uses' => 'ProductController@getIndex', 'as' => 'product.index' ]); Route::get('/signup', [ 'uses' => 'UserController@getSignup', 'as' => 'user.signup' ]); It is worth laravel 5.2 in the routes file the first route works, and the second is not. The address does not work in the route after the "/". PS: UserController substituted in the first route works !! Only the address after "/" does not want.
Help me please!
UserController, if you register ONLY with "/" (NOT '/ signup'), it works:
Route::get('/signup', [ 'uses' => 'UserController@getSignup', 'as' => 'user.signup' ]);
php artisan route:list- xEdelweiss