Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit
https://github.com/akelos/akelos/issues
Akelos PHP Framework Forum
Discussions
Categories
General
: How to execute find in the console?
Bottom of Page
1 to 2 of 2
CommentAuthor
conradwt
Hi, how does one perform a find( 'all' ) in the console. I have tried the following:
Episode->find('all');
which produced the following error message:
PHP Error:
Function find() doesn't exist
CommentAuthor
reeceer
did you try creating an instance of the model Episode class?
>>$ep = new Episode();
>>$ep = $ep->find('all');
1 to 2 of 2
Back to Discussions
Top of Page