Welcome Guest, Not a member yet? Register   Sign In
Pagination
#3

(03-08-2021, 12:29 AM)iRedds Wrote: The getOvner method returns the result. For pagination to work based on your request, you only need to prepare the request, not return it. Which implies using only QueryBuilder.

PHP Code:
// model method 
public function myMethod()
{
    $this->builder()->where('field''value');
    return $this;  
}

// Example to call
$model = new MyModel();

$model->myMethod()->paginate(1); 

Thank you very much! Smile
Reply


Messages In This Thread
Pagination - by 1stian - 03-07-2021, 09:50 AM
RE: Pagination - by iRedds - 03-08-2021, 12:29 AM
RE: Pagination - by 1stian - 03-08-2021, 10:16 AM



Theme © iAndrew 2016 - Forum software by © MyBB