Best practice ( https://laravel.com/docs/9.x/routing )
- Routes must have a name instead of URL Example
Route::get('/post/{post}', function () {//})->name('post.show'); - Using Rout Parameters
- The function arguments must always be the same as the root parameters are bing called