Exception
Property [Id_pet] does not exist on the Eloquent builder instance
This error has occurred because the controller was unable to find the primary key of the table with the command
$petstore = Petstore::find($Parameter)
So instead of find() I'll use where();
$petstore = Petstore::where('$primarykey','$parameter')->fi...
laiba.hashnode.dev1 min read