laravel 5.2 pagination pretty url -
i using laravel 5.2
is there way pagination pretty url in laravel 5.2?
http://localhost:8000/backend/admin_user?page=10&page=1
and get,how generate link pretty url:
so can try that:
route::get('test/{page}', function ($page) { return user::paginate(2, ['*'], 'page', $page); });
Comments
Post a Comment