Skip to content

Instantly share code, notes, and snippets.

@burakerdem
Created January 24, 2013 14:21
Show Gist options
  • Save burakerdem/4622181 to your computer and use it in GitHub Desktop.
Save burakerdem/4622181 to your computer and use it in GitHub Desktop.
Dynamic routing in Laravel
// http://forums.laravel.io/viewtopic.php?id=1943#p12005
Route::get('settings/(account|notifications|profile)', array(
'as' => 'settings',
'uses' => 'account.settings@(:1)'
));
URL::to_route('settings', 'profile');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment