Skip to content

v1.0.10

Compare
Choose a tag to compare
@agungsugiarto agungsugiarto released this 28 Sep 10:56
· 3 commits to master since this release

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();