【发布时间】:2017-08-05 07:32:27
【问题描述】:
我有两张桌子。
- 内容类型
- 内容
contenttype 返回我的内容类型列表,然后我用 foreach 在页面上显示它们。例如救护车服务、血库、诊所等如快照所示。
同时,我正在从另一个表(内容)中获取每种类型的内容总数。
我成功地获得了每种类型的内容总数并使用 foreach 显示在刀片上。 但情况是我想显示每种内容类型的内容数量。 像这样 救护车服务 8, 血库 7, 诊所 4。 我的控制器方法是:
public function index()
{
if (Gate::allows('edit-content', auth()->user())) {
// below line returns list of content type e.g Ambulance service
$type = DB::table('contenttype')->distinct('label')->orderBy('label', 'asc')->paginate(10);
//below line counts the number of each content type e.g. Ambulance service 10.
$count = Content::selectRaw('type, count(*)total')->groupBy('type')->get();
return view('admin.content_listing', compact('type', 'count'));
} else {
abort(403, "Unauthorized");
}
}
这是刀片代码:
@foreach ($count as $c)
<span class="label label-danger">{{ $c->total }} </span>
@endforeach
@foreach ($type as $t)
<div class="list-group-item">
<a href="{{ route('content.type.listing', $t->type ) }}" > {{ $t->label }}
<span class=" pull-right glyphicon glyphicon-search"></span></a>
<a href="{{ route('content.add.form') }}" class="pull-right "><span class="col-md-1 glyphicon glyphicon-plus-sign"></span></a>
</div>
@endforeach
输出为: 如果我将上面的循环放在第二个循环中,那么它当然会变成我不想要的嵌套循环。
我需要出示救护车 8, 美容诊所 8, 血库 1, 等等
如果有人知道解决方案,请分享! 我尝试了不同的方法,但没有成功。
【问题讨论】:
标签: php mysql foreach laravel-5.3 laravel-blade