two route one name controller laravel code example
Example: multiple routes same controller laravel
$router->get('/{home?}', 'SiteController@home')
->where('home', '(home|another_home_route)')
->name('home');
$router->get('/{home?}', 'SiteController@home')
->where('home', '(home|another_home_route)')
->name('home');