Skip to content

Instantly share code, notes, and snippets.

@antimech
Last active May 28, 2023 06:35
Show Gist options
  • Save antimech/8c69f4c0ecb0f6d9fceaa102cc3ce814 to your computer and use it in GitHub Desktop.
Save antimech/8c69f4c0ecb0f6d9fceaa102cc3ce814 to your computer and use it in GitHub Desktop.
Laravel Route Regular Expression Constraints example
<?php
Route::get('/welcome', function () {
return view('welcome');
});
Route::get('/{link}', 'LinkController@show')
->where(['link' => '[a-zA-Z0-9_]+'])
->name('link.show');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment