I'm trying to delete a post in Laravel and I get Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException
So I have my delete button
<div class="col-md-6 text-right">
<form method="DELETE" action="{{ url('news/news/destroy').'/'. $info->id }}" role="form">
{!! Form::submit('Delete this task?', ['class' => 'btn btn-danger']) !!}
{!! Form::close() !!}
</div>
</div>
MY controller
public function destroy($id)
{
$info = News::find($id);
$info->delete();
Session::flash('flash_message', 'Task successfully deleted!');
return view('news.index',['info' => $info]);
}
MY route
Route::delete('news/news/destroy/{id}', 'NewsController@destroy');
Is it the correct method?