Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scotch-io/laravel-eloquent-guide
Code for the scotch.io tutorial: A Guide to Using Eloquent ORM in Laravel
https://github.com/scotch-io/laravel-eloquent-guide
Last synced: 8 days ago
JSON representation
Code for the scotch.io tutorial: A Guide to Using Eloquent ORM in Laravel
- Host: GitHub
- URL: https://github.com/scotch-io/laravel-eloquent-guide
- Owner: scotch-io
- Created: 2014-02-24T04:23:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-03-02T22:56:13.000Z (over 10 years ago)
- Last Synced: 2024-04-14T18:18:19.461Z (7 months ago)
- Language: PHP
- Homepage: http://scotch.io/tutorials/php/a-guide-to-using-eloquent-orm-in-laravel
- Size: 180 KB
- Stars: 34
- Watchers: 8
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# A Guide to Using Laravel Eloquent
View the [scotch.io tutorial](http://scotch.io/tutorials/php/a-guide-to-using-eloquent-orm-in-laravel)
## Usage
1. Install Laravel: `composer install --prefer-dist`
2. Change your database settings in `app/config/database.php`
3. Migrate your database: `php artisan migrate`
4. Seed your database: `php artisan db:seed`
5. View your app at: `http://example.com/eloquent`