/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $club = getClub($id, 'admin::clubs');
     ClubPost::where('club_id', $club->id)->delete();
     Club::destroy($club->id);
     return Redirect::route('admin::clubs')->with('success', 'The club has been deleted');
 }