/**
  * Remove the specified resource from storage.
  *
  * @param $id
  * @return Response
  */
 public function destroy(ArticleCategory $articleCategory)
 {
     $articleCategory->delete();
 }