You cannot use the anchor tag with href to send a delete request. You need a form to do so. Using the DELETE method, since in the form we receive only the message and create a hidden field with the name _method and the value DELETE
Create a form similar to this:
<form action="news/id" method="post">
<input type="hidden" name="token" value="{{csrf_token}}" >
<input type="hidden" name="_method" value="DELETE" >
<input type="submit" value="delete " >
</form>
source
share