Exemplo n.º 1
0
 /**
  * Display a listing of the Guest.
  * GET|HEAD /guests
  *
  * @return Response
  */
 public function index()
 {
     $guests = $this->guestRepository->all();
     return $this->sendResponse($guests->toArray(), "Guests retrieved successfully");
 }