-
Notifications
You must be signed in to change notification settings - Fork 231
Closed
Labels
Description
Your lib has some bug in
laravel-model-caching/src/CachedBuilder.php file in function paginate()
Param pageName has default value - "page", and in line 129
$page = request("page", $page ?: 1);
you must use this variable like this:
$page = request($pageName , $page ?: 1);
At the moment there is no possibility to use a page name other than the "page".
Pls fix it. Thanks.