1
私は、n番目のオブジェクトごとにdivを挿入する必要があるforeachループを持っています。laravelでn番目のオブジェクトごとにdivを挿入する方法
@if(count($articles))
@foreach($articles as $article)
@if(this is the nth object)
<div class="row margin-b-2">
@endif
<div class="col-sm-4">
<a style="background-color: {{ $article->category->color }}" href="{{ route('category', ['category_slug' => $article->category->slug]) }}">{{ $article->category->title }}</a>
</div>
@if(this is the nth object)
</div>
@endif
@endforeach
@endif
これは私がやろうとしているものの裸の骨です。
おかげさまで、これは私が使用しようとしていた方法でしたが、ブレードの変数を初期化するのに苦労していました。 – Baz