App\Http\Controllers\Backend\CommentController::destroy PHP Method

destroy() public method

Remove the specified resource from storage.
public destroy ( integer $id ) : Response
$id integer
return Dingo\Api\Http\Response
    public function destroy($id)
    {
        //
        $comment = Comment::find($id);
        $comment->delete();
        return Redirect::to('admin/comments');
    }