<?php
class Product extends Eloquent {
protected $with = array('category');
public function category()
{
return $this->belongsTo('Models\Category',
'category_id');
}
}
Define a property $withinstead of a property $appends. This is a heavy load.
source
share