Skip to content

v1.0.5

Compare
Choose a tag to compare
@agungsugiarto agungsugiarto released this 25 Aug 11:25
· 20 commits to master since this release

Breaking changes

  • method findWhere() now change to $this, so you can chain to method get() or paginate()
$this->news->findWhere([
    // where id equals 1
   'id' => '1',
    // other "where" operations
    ['news_category_id', '<', '3'],
        ...
])->paginate()