Hey,
I get all rows from the database with $data = Data::find(); and I bind them to a var for the views ($this->view->setVar("data", $data);).
Now in the views I want the data from row 6. How can I get the data by index? As it is an object and not an array..
I don't want to run a for each it.