From 0f6a66ae69b450aee59c0d98a1b3c2edfd0863ea Mon Sep 17 00:00:00 2001 From: Agung Sugiarto Date: Mon, 28 Sep 2020 17:54:10 +0700 Subject: [PATCH] [ci skip] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 7cf2892..11547a1 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,12 @@ class NewsController extends BaseController - Execute the query as a "select" statement or get all results: ```php +/** + * 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(); ```