/**
  * Display a listing of the Reservation.
  * GET|HEAD /reservations
  *
  * @return Response
  */
 public function index()
 {
     $reservations = $this->reservationRepository->all();
     return $this->sendResponse($reservations->toArray(), "Reservations retrieved successfully");
 }