Welcome Guest, Not a member yet? Register   Sign In
Pagination don't work
#3

Change your model like this:

Code:
class UserModel extends Model
{
    protected $table      = 'users';
    protected $primaryKey = 'id_user';

    /*
    * Get all users
    */
    function get_all_users()
    {
        return $this->table('users')->orderBy('id_user', 'asc');
    }
}
Reply


Messages In This Thread
Pagination don't work - by dimonisse - 11-15-2019, 02:18 AM
RE: Pagination don't work - by pi26 - 02-18-2021, 10:55 AM
RE: Pagination don't work - by InsiteFX - 02-18-2021, 12:22 PM
RE: Pagination don't work - by wdeda - 02-18-2021, 02:35 PM



Theme © iAndrew 2016 - Forum software by © MyBB