Tagged Questions
0
votes
1answer
188 views
Eager Loading from the model in Laravel 4
In Laravel 3, one could do the following in the model (http://laravel.com/docs/database/eloquent#eager):
class Book extends Eloquent
{
public $includes = array('author'); // this line
...
1
vote
1answer
358 views
Laravel Eager Loading missing relationships when chained with first()/all()
Using L3 the following works fine :
$r = Site::with('services')->get()
That returns exactly what I'd expect. An array of Site objects, with the services relationship all neatly populated.
...