Welcome Guest, Not a member yet? Register   Sign In
Search and Pagination
#1

Pagination works simple and well when I list my db with 600 records

But when I have to include a search, only the first page of the pagination works well and counts the records correctly, when I click on the second page the system disregards the item searched and returns to list all the pages.

Please help me to implement the code correctly.

Code:
public function search(){     
            
        $model = new MyModel;
        $name = $this->request->getVar('name') ;
    
        $data = [
            'value' => $model->orderBy('uf', 'asc')
            ->like('name', $name)
            ->paginate(10),
                    
            'pager' => $model->pager
            ];


    echo view('mycontroller/search',$data);

}
Reply


Messages In This Thread
Search and Pagination - by Maria Renata - 04-20-2020, 11:40 AM
RE: Search and Pagination - by wdeda - 04-20-2020, 07:51 PM
RE: Search and Pagination - by Maria Renata - 04-22-2020, 03:57 PM



Theme © iAndrew 2016 - Forum software by © MyBB