我现在有一个2型号。 productCategory的第二个是productType
我试图这样做。类别1
类别2
但是出了点问题,结果就是这样:
类别1
类别2
我在我的productType模型中做了这个:
public function category()
{
return $this->belongsTo(ProductCategory::class,'product_categories_id', 'id');
}
并且查看如下:
@foreach($types as $type)
<a href="#">
<li class="li">
<h3>{{$type->category->name}}</h3>
</li>
</a>
@endforeach
我该怎么办?我不明白。提前谢谢。
编辑SQL:
product_categories:id,name,order
product_types:id,product_categories_id,name,order