Home > database >  404 NOT FOUND in Laravel v9.12.2
404 NOT FOUND in Laravel v9.12.2

Time:05-16

I am creating a simple website in Laravel while running a web site ran into the problem with 404 NOT FOUND Laravel . edit-prod page when getting error of 404 NOT FOUND I don't know why is that. what I tried so far I attached below. enter image description here

enter image description here

CodePudding user response:

Sometimes I got this error when I use the different path in web.php ()url so could you please provide more details

CodePudding user response:

you need to provide more details. Try in form blade

<a href="{{route('edit-prod', ['id' => $product->id])}}">Edit</a>
  • Related