/**
  * Remove the specified excursionbooking from storage.
  *
  * @param  int $id
  * @return Response
  */
 public function destroy($id)
 {
     ExcursionBooking::destroy($id);
     return Redirect::route('excursionbookings.index');
 }