Releases: agungsugiarto/codeigniter4-repository
Releases · agungsugiarto/codeigniter4-repository
v1.1.0
v1.0.10
get() method implement limit and offset.
Example:
/**
* Get method implement parameter "select", "limit" and "offset".
* The default will be select * and return all offset data.
*
* Example: $this->news->get(['*'], 50, 100);
*/
$news = $this->news->get();
v1.0.9
Refactor pass to argument and added more testing
v1.0.8
added style to load instance of model
v1.0.7
added more comment
v1.0.6
add comment on interface
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()
v1.0.4
Update README.md
v1.0.3
update comment
v1.0.2
add helper