我正在尝试显示按类别分组的餐厅菜单,例如...
午餐
鸡肉和薯条
米
早餐
茶
咖啡
所以我的数据库中有 3 个表,餐厅、类别和菜单
类别模型
class Category extends Model
{
protected $fillable = [
'name'
];
/**
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function menus_type()
{
return $this->hasMany('App\Menu','category_id');
}
}
型号菜单
class Menu extends Model
{
protected $fillable = [
'name',
'price',
'description',
'photoPath',
'restaurant_id',
'category_id',
];
/**
* Menu belongs to Restaurant
*/
public function restaurant()
{
return $this->belongsTo('App\Restaurant');
}
/**
* Menu belongs to category type
*/
public function category_type()
{
return $this->belongsTo('App\Category', 'category_id');
}
}
餐厅控制器
public function show($slug, RestaurantRepository $repository){
if(! $restaurant = $repository->get(['slug' => $slug], with(['cuisines','user', 'photos', 'thumbs', 'region', 'ratings.user']))) return abort('404');
$menus=Menu::with(['category_type'])->where('restaurant_id',$restaurant->id)->get()->groupBy('category_id');
return view('frontend.restaurant.show', compact('restaurant', 'p','menus'));
}
当我转储它时,它看起来很好。
结果已分组
现在我的问题出在视图上,当我尝试获取结果时,我得到了一个错误。
@if($menus)
<ul>
@foreach($menus as $m)
<li>
{{$m->name}}
</li>
@endforeach
</ul>
@endif
错误异常 (E_ERROR)。
此集合实例上不存在属性 [名称]。
www说