/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     PartnersCategory::destroy($id);
     return redirect(route('admin.partnersCategories.index'))->with('success', 'La catégorie a bien été supprimée');
 }