Created
June 24, 2014 02:10
-
-
Save mikedugan/d23ae5b3f5e581c8b9b8 to your computer and use it in GitHub Desktop.
From http://www.laravel-tricks.com/tricks/routing-patterns - some basic and useful patterns
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is what you might have right now | |
Route::get('users/{id}', 'UserController@getProfile')->where('id', '[\d+]+'); | |
Route::get('products/{id}', 'ProductController@getProfile')->where('id', '[\d+]+'); | |
Route::get('articles/{slug}', 'ArticleController@getFull')->where('slug', '[a-z0-9-]+'); | |
Route::get('faq/{slug}', 'FaqController@getQuestion')->where('slug', '[a-z0-9-]+'); | |
// and many more, now imagine you'll have to change the rule | |
// Instead, you could have a handy list of patterns and reuse them everywhere: | |
// Patterns | |
Route::pattern('id', '\d+'); | |
Route::pattern('hash', '[a-z0-9]+'); | |
Route::pattern('hex', '[a-f0-9]+'); | |
Route::pattern('uuid', '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'); | |
Route::pattern('base', '[a-zA-Z0-9]+'); | |
Route::pattern('slug', '[a-z0-9-]+'); | |
Route::pattern('username', '[a-z0-9_-]{3,16}'); | |
// make more of your own to suit your needs: email, password, etc. | |
Route::get('users/{id}', 'UserController@getProfile'); | |
Route::get('products/{id}', 'ProductController@getProfile'); | |
Route::get('articles/{slug}', 'ArticleController@getFull'); | |
Route::get('faq/{slug}', 'FaqController@getQuestion'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment