Skip to content

1.5.2

Latest
Compare
Choose a tag to compare
@Surt Surt released this 10 Nov 12:49
· 50 commits to master since this release

Added dot notation for chained relationships, example:
$user->with('posts.comments')->find_many(); // => $users->with(array('posts'=>array('with'=>'comments')))->find_many();

Fixed 'pluck' method.