These are my routes: link
This is my edit function in the NormasEmitidasAdmin driver
public function edit($id)
{
$normaEmitida = NormaEmitida::find($id);
return view('NormasEmitidas.edit',['normaEmitida'=>$normaEmitida]);
}
My view is on the route: Terminated Standards / edit.blade.php
I have some 3500 records and can not find a way to access my edit method.
I work on localhost and I've tried routes like link {$ id} / edit but it did not work for me, it throws me a NotFoundHttpException error