Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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;
}

```