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:

http://localhost:8000/backend/admin_user/10/1

so can try that:

route::get('test/{page}', function ($page) { return user::paginate(2, ['*'], 'page', $page); });


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -