/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { $tag = Tag::findOrFail($id); $tag->delete(); return redirect('/admin/tag')->withSuccess("The '{$tag->tag}' tag has been deleted."); }