I have a number of tables in my MySQL database and use them to collect information using views. According to Phalcon's tutorial, models should be created for each table, and their source should be set, but does this also apply on views?
To answer your question, yes, views are treated the same as tables, and a model is needed for each view.