https://github.com/avinashn/routing-example-in-laravel
Source code of the routing example discussed here - http://justlaravel.com/routing-in-laravel/
https://github.com/avinashn/routing-example-in-laravel
Last synced: over 1 year ago
JSON representation
Source code of the routing example discussed here - http://justlaravel.com/routing-in-laravel/
- Host: GitHub
- URL: https://github.com/avinashn/routing-example-in-laravel
- Owner: avinashn
- License: apache-2.0
- Created: 2016-04-23T12:21:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-26T07:17:41.000Z (over 8 years ago)
- Last Synced: 2025-01-20T20:33:16.135Z (over 1 year ago)
- Language: PHP
- Size: 451 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- 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/