public function get_all_posts()
{
$thought = Model_Post::find('last');
return $thought;
}
if I do the following. public function get_all_posts()
{
$thought = Model_Post::find('All');
return $thought;
}
and I get
Notice! ErrorException [ Notice ]: Trying to get property of non-object
$thoughts = Model_Post::find('all');
foreach ($thoughts as $thought)
{
// Do something...
}
It looks like you're new here. If you want to get involved, click one of these buttons!