Várias rotas no mesmo controlador Laravel
$router->get('/{home?}', 'SiteController@home')
->where('home', '(home|another_home_route)')
->name('home');
Tame Turtle