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

(This post was last modified: 03-22-2020, 02:52 PM by jreklund.)

Hi. I'm having trouble paging.

I want to sort the results using Order By, but it returns the data incorrectly.

PHP Code:
$data = [
    
'jornadas' => $jornadaModel->orderBy('status DESC, fecha_jornada DESC')->paginate(10),
    
'pager' =>$jornadaModel->pager
]; 
This works fine.
PHP Code:
$data = [
    
'jornadas' => $jornadaModel->paginate(10),
    
'pager' =>$jornadaModel->pager
]; 

I appreciate the answer. How can I paginate the data in an orderly manner?
Reply




Theme © iAndrew 2016 - Forum software by © MyBB