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

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

Laravel:如何在 Blade 中使用 for 和 foreach 顯示數(shù)據(jù)

Laravel:如何在 Blade 中使用 for 和 foreach 顯示數(shù)據(jù)

PHP
當(dāng)年話下 2023-09-15 17:01:55
我想使用 for 和 foreach 循環(huán)根據(jù)提供的模板表顯示數(shù)據(jù),但是當(dāng) else 條件始終顯示其自己的索引時(shí)這是我的期望:這是我的數(shù)據(jù):這現(xiàn)在正在發(fā)生:這是我的代碼:@for ($i = 0; $i < 7; $i++)@foreach ($scheduleDetails as $item)    @if ($i == $item->day)        <td class="p-1">            <input name="from[]" value="{{substr($item->from_time,0,-3)}}" id="from{{$i}}" style="width:50px;margin:auto" class="text-center" type="text" readonly>        </td>        <td class="p-1">            <input name="until[]" value="{{substr($item->until_time,0,-3)}}" id="until{{$i}}" style="width:50px;margin:auto" class="text-center" type="text" readonly>        </td>    @else        <td>{{$i}}</td>    @endif@endforeach@endfor謝謝..
查看完整描述

1 回答

?
慕萊塢森

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

嘗試一下,使用keyBy函數(shù)將day列作為結(jié)果的索引$scheduleDetails


@php $newScheduleDetails = $scheduleDetails->keyBy('day'); @endphp

@for ($i = 0; $i < 7; $i++)

   @if($newScheduleDetails->has($i))

       <td class="p-1">

            <input name="from[]" value="{{$newScheduleDetails->get($i)->from_time }}" id="from{{$i}}" style="width:50px;margin:auto" type="text">

        </td>

        <td class="p-1">

            <input name="until[]" value="{{$newScheduleDetails->get($i)->until_time }}" id="until{{$i}}" style="width:50px;margin:auto" type="text">

        </td>

   @else

        <td>{{$i}}</td>

        <td>{{$i}}</td>

   @endif

@endfor


查看完整回答
反對(duì) 回復(fù) 2023-09-15
  • 1 回答
  • 0 關(guān)注
  • 107 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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