“Laravel Foreach First” Ответ

Как получить первый предмет в Foreach в Ларавеле

@foreach($items as $item)
    @if ($loop->first) First Item: @endif
    <h4>{{ $item->program_name }}</h4>
@endforeach
Mohamad

Laravel Foreach First

@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
Fernando Gunther

Ответы похожие на “Laravel Foreach First”

Вопросы похожие на “Laravel Foreach First”

Больше похожих ответов на “Laravel Foreach First” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования