/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     Catalogue::destroy($id);
     return redirect()->route('admin.menu.catalogue.index')->withFlashSuccess(trans("menu_backend.menu_catalogue_deleting"));
 }