1 回答

TA貢獻(xiàn)1936條經(jīng)驗 獲得超7個贊
您需要在產(chǎn)品模型中建立關(guān)系。
class Product extends Model
{
public function category()
{
return $this->belongsTo('App\Category','category_id','id');
}
public function color()
{
return $this->belongsTo('App\Color','color_id','id');
}
public function size()
{
return $this->belongsTo('App\Size','size_id','id');
}
public function brand()
{
return $this->belongsTo('App\Brand','brand_id','id');
}
}
現(xiàn)在在控制器中你可以得到如下。
$products = Product::with(['category','color','size','brand'])->get();
- 1 回答
- 0 關(guān)注
- 123 瀏覽
添加回答
舉報