From aecfefecfd47f2f5f95e8cb507a4df72b040591b Mon Sep 17 00:00:00 2001 From: Saiful Islam Date: Sat, 16 Jan 2021 18:40:07 +0600 Subject: [PATCH 1/4] https://github.com/yajra/laravel-datatables/issues/2493 Hard Limit in Config (for Pagination) --- src/QueryDataTable.php | 3 ++- src/config/datatables.php | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/QueryDataTable.php b/src/QueryDataTable.php index fcd158b9..e84eb510 100644 --- a/src/QueryDataTable.php +++ b/src/QueryDataTable.php @@ -617,7 +617,8 @@ public function limit(callable $callback) */ public function paging() { - $limit = (int) $this->request->input('length') > 0 ? $this->request->input('length') : 10; + $max_records_per_page = $this->config->get('datatables.max_records_per_page', 0); + $limit = ($max_records_per_page > 0 && $limit > $max_records_per_page) ? $max_records_per_page : $limit; if (is_callable($this->limitCallback)) { $this->query->limit($limit); call_user_func_array($this->limitCallback, [$this->query]); diff --git a/src/config/datatables.php b/src/config/datatables.php index ed2e36f7..8dfbafc7 100644 --- a/src/config/datatables.php +++ b/src/config/datatables.php @@ -119,4 +119,11 @@ 'options' => 0, ], + /** + * Maximum records per page + * Set 0 for unlimited record + * Do not use value under 10 if you are not using laravel-datatables-html + */ + 'max_records_per_page' => 100, + ]; From 2e9b51ea7ee76ce42fb4d8274521bfd231334629 Mon Sep 17 00:00:00 2001 From: Saiful Islam Date: Sat, 16 Jan 2021 19:11:07 +0600 Subject: [PATCH 2/4] Default Value is 0 --- src/config/datatables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/datatables.php b/src/config/datatables.php index 8dfbafc7..f61fe429 100644 --- a/src/config/datatables.php +++ b/src/config/datatables.php @@ -124,6 +124,6 @@ * Set 0 for unlimited record * Do not use value under 10 if you are not using laravel-datatables-html */ - 'max_records_per_page' => 100, + 'max_records_per_page' => 0, ]; From 96df1bf07595a001ee8d8e3bf88332020533839f Mon Sep 17 00:00:00 2001 From: Saiful Islam Date: Sat, 16 Jan 2021 19:14:31 +0600 Subject: [PATCH 3/4] COde Fix --- src/QueryDataTable.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/QueryDataTable.php b/src/QueryDataTable.php index e84eb510..f1f68093 100644 --- a/src/QueryDataTable.php +++ b/src/QueryDataTable.php @@ -618,6 +618,7 @@ public function limit(callable $callback) public function paging() { $max_records_per_page = $this->config->get('datatables.max_records_per_page', 0); + $limit = (int) $this->request->input('length') > 0 ? $this->request->input('length') : 10; $limit = ($max_records_per_page > 0 && $limit > $max_records_per_page) ? $max_records_per_page : $limit; if (is_callable($this->limitCallback)) { $this->query->limit($limit); From 36aad90ec1db8624c1e569ec7635c472bed65acb Mon Sep 17 00:00:00 2001 From: Saiful Islam Date: Sat, 16 Jan 2021 19:19:10 +0600 Subject: [PATCH 4/4] styleci Fix --- src/QueryDataTable.php | 4 ++-- src/config/datatables.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/QueryDataTable.php b/src/QueryDataTable.php index f1f68093..a9ec7b3c 100644 --- a/src/QueryDataTable.php +++ b/src/QueryDataTable.php @@ -618,8 +618,8 @@ public function limit(callable $callback) public function paging() { $max_records_per_page = $this->config->get('datatables.max_records_per_page', 0); - $limit = (int) $this->request->input('length') > 0 ? $this->request->input('length') : 10; - $limit = ($max_records_per_page > 0 && $limit > $max_records_per_page) ? $max_records_per_page : $limit; + $limit = (int) $this->request->input('length') > 0 ? $this->request->input('length') : 10; + $limit = ($max_records_per_page > 0 && $limit > $max_records_per_page) ? $max_records_per_page : $limit; if (is_callable($this->limitCallback)) { $this->query->limit($limit); call_user_func_array($this->limitCallback, [$this->query]); diff --git a/src/config/datatables.php b/src/config/datatables.php index f61fe429..ad757231 100644 --- a/src/config/datatables.php +++ b/src/config/datatables.php @@ -122,7 +122,7 @@ /** * Maximum records per page * Set 0 for unlimited record - * Do not use value under 10 if you are not using laravel-datatables-html + * Do not use value under 10 if you are not using laravel-datatables-html. */ 'max_records_per_page' => 0,