1$router->get('/{home?}', 'SiteController@home')
2 ->where('home', '(home|another_home_route)')
3 ->name('home');
1Route::match(['get', 'post'], '/user', [
2 'uses' => 'AppController@user',
3 'as' => 'useraccess',
4 'roles'=> 'HomeController@useroles',
5]);