Hi, I have a problem with one route:
Route::get("/catalogo/{category:name}/{serie:name}", [ProductController::class, "index"])->name("products.show");
I got 404 NOT FOUND,
but if I change to:
Route::get("/catalogo/{category:name}/{serie}", [ProductController::class, "index"])->name("products.show");
It works.
My controller code:
`public function index(Category $category, Serie $serie)
{
dd("it's working");
return view("product");
}`
I also have in my table "series" a column "name", please help, thanks.