Skip to content

Instantly share code, notes, and snippets.

@Lelectrolux
Last active August 3, 2016 13:55
Show Gist options
  • Save Lelectrolux/69bd38fe9f8eb49d62dd5a895e9140e4 to your computer and use it in GitHub Desktop.
Save Lelectrolux/69bd38fe9f8eb49d62dd5a895e9140e4 to your computer and use it in GitHub Desktop.
testing priority in laravel routing
// Switch lines and test
Route::get('users/manage', function(){return 'managing page';});
Route::get('users/{username}', function($username){return 'user : '.$username;});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment