Skip to content

Instantly share code, notes, and snippets.

@InTheScript
Last active December 27, 2015 08:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InTheScript/7293853 to your computer and use it in GitHub Desktop.
Save InTheScript/7293853 to your computer and use it in GitHub Desktop.
Case insensitive routing in laravel
<?
Route::get('{users}', function($users)
{
return View::make('users');
})
->where('users', '[A-Za-z]+');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment