刀片模板中的Laravel嵌套循环

时间:2016-07-14 16:31:46

标签: php laravel-5 nested-loops laravel-blade

我正在建立一个五人制足球联赛网站,展示赛程和结果。结果模型就像这样

class Result extends Model {

//
protected $fillable = ['team_1', 'team_2', 'goals_1', 'goals_2', 'date', 'mom'];

}

有没有办法可以在刀片和按日期分组中循环显示这些数据?

提前致谢

1 个答案:

答案 0 :(得分:1)

在您的控制器中,您可以执行以下操作:

return view('yourView', [
    'variable' => Result::groupBy('date')->get()
]);

Read more about using models here

Read more about using QueryBuilder here

在您看来,请执行以下操作:

@foreach($variable as $row)
    {{$row->date}}
@endforeach

Read more about blades here