首页 > 解决方案 > 如何在 Laravel 中显示分组值

问题描述

我正在尝试显示按类别分组的餐厅菜单,例如...

所以我的数据库中有 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'));
}

当我转储它时,它看起来很好。

这是从 $menu 变量返回的内容

结果已分组

使用关系扩展结果集

现在我的问题出在视图上,当我尝试获取结果时,我得到了一个错误。

   @if($menus)
   <ul>
     @foreach($menus as $m)
       <li>
         {{$m->name}}
       </li>
     @endforeach
   </ul>
   @endif

错误异常 (E_ERROR)。

此集合实例上不存在属性 [名称]。

标签: phplaravellaravel-5eloquent

解决方案


也迭代内循环。'groupBy()' 用category_idas 键创建另一个数组。

@if($menus)
 <ul>
 @foreach($menus as $category_id=>$outer)
  @foreach($outer as $k=>$inner)
   <li>
      {{$category_id}}: {{$inner->name}}
   </li>
   @endforeach
 @endforeach
 </ul>
 @endif

更新了您的查询以从类别中获取

$categories = Category::with('menus_type')->get();
return view('frontend.restaurant.show', compact('restaurant', 'p','categories '));

在你看来

@if($categories ?? false)
 <ul>
 @foreach($categories ?? [] as $cat_key=>$category)
  <li>
      {{$category->name}}
  </li>
  <li>
  <ul>
  @foreach($category->menus_type as $menu_key=>$menu)
  <li>
      {{$menu->name}}
  </li> 
  @endforeach
  </ul>
  </li>
 @endforeach
 </ul>
 @endif

推荐阅读