v1.0.5
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()