Laravel - Controllers
You have this route registration:
But when you try to access
Route::apiResource('products', ProductController::class);But when you try to access
GET /products/create, you get a 404 error. Why?