Пример #1
0
 /**
  * Display a listing of the Floor.
  * GET|HEAD /floors
  *
  * @return Response
  */
 public function index()
 {
     $floors = $this->floorRepository->all();
     return $this->sendResponse($floors->toArray(), "Floors retrieved successfully");
 }