第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 Laravel 中使用 2 foreach

如何在 Laravel 中使用 2 foreach

PHP
慕尼黑5688855 2023-10-22 21:12:01
如何在laravel中使用2個(gè)foreach?橫幅 div 不能包含在 forach 中。因?yàn)椴季直黄茐牧恕?/for show post 1-5@foreach ($posts as $post)    //.................@endforeach//for banner<div>...............</div//continue foreach (for show 6-...)@foreach ($posts as $post)    //.................@endforeach
查看完整描述

2 回答

?
精慕HU

TA貢獻(xiàn)1845條經(jīng)驗(yàn) 獲得超8個(gè)贊

您可以使用循環(huán)變量,如下所示:


//for show post 1-5

@foreach ($posts as $post)

? ? @if($loop->index < 5)

? ? ? ? // Your code

? ? @endif

@endforeach


//continue foreach (for show 6-...)

@foreach ($posts as $post)

? ? @if($loop->index > 5)

? ? ? ? // Your code

? ? @endif

@endforeach


查看完整回答
反對(duì) 回復(fù) 2023-10-22
?
慕容森

TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超18個(gè)贊

您可以在 Blade 中將帖子數(shù)據(jù)分成 2塊

@foreach($posts->chunk(5) as $chunk)

? ? ? ? @foreach($chunk as $post)

? ? ? ? ? ? //.....

? ? ? ? @endforeach?

? ? //add your banner here after first chunk is rendered

@endforeach

或者單個(gè)循環(huán)并檢查當(dāng)前迭代

@foreach($posts as $post)

? ? //...........

? ? @if($loop->iteration == 5)

? ? ? ? //add your banner here?

? ? @endif

@endforeach


查看完整回答
反對(duì) 回復(fù) 2023-10-22
  • 2 回答
  • 0 關(guān)注
  • 176 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)