Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/franciscowallison/estudos---laravel
Praticando Laravel
https://github.com/franciscowallison/estudos---laravel
laravel53 laravel54 miniprojetos
Last synced: 4 days ago
JSON representation
Praticando Laravel
- Host: GitHub
- URL: https://github.com/franciscowallison/estudos---laravel
- Owner: FranciscoWallison
- Created: 2016-09-08T00:31:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-04T19:36:45.000Z (about 7 years ago)
- Last Synced: 2024-10-11T10:42:21.326Z (about 1 month ago)
- Topics: laravel53, laravel54, miniprojetos
- Language: PHP
- Homepage:
- Size: 442 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Estudos---Laravel
Para por em pratica colocarei aqui tudo que vou aprendendo do mundo laravel.# ver erros
php artisan [comando] --verbose## [Melhoria na consulta](https://laravel.com/docs/4.2/eloquent#eager-loading)
```
foreach (Book::with('author')->get() as $book)
{
echo $book->author->name;
}```