6. Biến vòng lặp $loop (The loop variable)
https://viblo.asia/p/tap-13-blade-template-laravel-1VgZv1dRKAw
@foreach ($users as $user)
@if ($loop->first)
This is the first iteration.
@endif
@if ($loop->last)
This is the last iteration.
@endif
<p>This is user {{ $user->id }}</p>
@endforeach@foreach ($users as $user)
@foreach ($user->posts as $post)
@if ($loop->parent->first)
This is first iteration of the parent loop.
@endif
@endforeach
@endforeachPrevious5. Laravel cung cấp cho chúng ta thẻ @forelse, @continue, @break (ok)NextV. Toàn tập Blade template Laravel (ok)
Last updated