示例#1
0
 /**
  * Display a listing of the Room.
  *
  * @return Response
  */
 public function index()
 {
     $rooms = $this->roomRepository->paginate(10);
     return view('admin.rooms.index')->with('rooms', $rooms);
 }