php
1@for($i = 0; $i<$hoge->count; $i++) 2 @if($hogehoge[$i]['hogehoge'] == true) 3 <tr class="border-bottom"> 4 @if($hoge->count > 1) 5 <td class="p-3"> 6 {{$i+1}} 7 @endif 8 <td>{{$hogehoge[$i]['hoge_name']}}</td> 9 <td> 10 <input type="file" name='hoge_filename<?= $i + 1?>'> 11 </td> 12 <td class="p-3"> 13 <div class="d-flex justify-content-center"> 14 <a class="btn btn-info mb-1" href="{{ route('hoge/edit', ['id'=>$hogehoge[$i]['id'], 'hoge_id'=>$hogehogehoge['id']]) }}" 15 role="button">編集</a> 16 </div> 17 </td> 18 </tr> 19 <tr class="d-inline-block"></tr> 20 @endif 21@endfor
起こっている不具合:
idが1のみコンテンツが表示されないバグ、他のコンテンツは表示されています。
DBの中身を確認して、$hoge->countの値もしっかり確認してあります。。
何か1の場合だとダメな記述があるのですかね?
あなたの回答
tips
プレビュー