1
votes
Route::post('posts/delete/{id}', 'PostController@destroy');

Error:

MethodNotAllowedHttpException in RouteCollection.php line 233

1
is this name of your method destroy ?Rahul

1 Answers

0
votes

Change it to this:

Route::delete('posts/delete/{id}', 'PostController@destroy');