We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 548999d commit 047a68fCopy full SHA for 047a68f
routes/web.php
@@ -21,7 +21,7 @@
21
Route::get('/articles/list', 'ArticleController@list')->name('articles.list');
22
Route::resource('/articles', 'ArticleController');
23
Route::resource('/comments', 'CommentController');
24
-Route::get('/tags/{name}', 'TagController@show')->name('tags.show');
+Route::get('/tags/{name}', 'TagController@show')->name('tags.show')->where('name', '.*');
25
26
Route::middleware(['auth', 'super'])->namespace('Admin')->prefix('admin-api')->group(function () {
27
0 commit comments