https://github.com/avinashn/pagination-example-in-laravel
Laravel pagination example application source code from the post - http://justlaravel.com/pagination-in-laravel/
https://github.com/avinashn/pagination-example-in-laravel
demo laravel pagination
Last synced: 29 days ago
JSON representation
Laravel pagination example application source code from the post - http://justlaravel.com/pagination-in-laravel/
- Host: GitHub
- URL: https://github.com/avinashn/pagination-example-in-laravel
- Owner: avinashn
- License: apache-2.0
- Created: 2016-04-23T12:28:39.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-26T07:19:07.000Z (over 8 years ago)
- Last Synced: 2025-01-20T20:33:15.398Z (over 1 year ago)
- Topics: demo, laravel, pagination
- Language: PHP
- Size: 452 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Prerequisites
- After cloning this repository, go to the root folder, run the following command/s,
composer install
composer update - Rename .env.example to .env and provide your database details there.
- Run
php artisan migrate
- Enter some dummy data in users table name and email fields(5+ entries for pagination to work)
- Run
php artisan key:generate
## Working Demo
You can see the demo of the project here
## Reference Post
http://justlaravel.com/pagination-in-laravel/