Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthorconradwt
     
    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
    • CommentAuthorreeceer
     
    did you try creating an instance of the model Episode class?

    >>$ep = new Episode();
    >>$ep = $ep->find('all');