/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $rooms = Room::latest('created_at')->published()->paginate(3); return View('rooms.index')->with('rooms', $rooms); }