maybe you're write the wrong code for your routing to handle update()
>
>You gonna have to share more.
>
>How are you making the PUT request (Code will be nice)?
>Route code only the Route::resource('photo', 'NameController'); part.
>
>-------------------
Here is the routes
Route::group(['prefix' => 'v1'], function() { Route::resource('resources', 'ResourceController', ['except' => ['create', 'edit']]); });
Yeah, finally found the problem solving from this forum,
I can not get inputs from a PUT/PATCH request
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community