@foreach($sorts as $sort)
thumb !== '') $sort -> thumb @else /images/type/type_no.png @endif" alt=""/>{{ $sort -> name }}
@endforeach
做了 foreach 我想輸入 當前迴圈的 索引 需要判斷 是雙數 還是單數 通過 索引 增加不同的 class名 就是不同的樣式布局
另外 判斷迴圈的資料 裡面 thumb 是縮圖 ,如果thumb 欄位 有縮圖 就輸入,沒有的話 就輸出 一直預設的圖片,
@if($sort -> thumb !== '') $sort -> thumb @else /images/type/type_no.png @endif
這樣判斷可以嗎。
以上2個問題 有大神可以指導一下嗎?
回複內容:
@foreach($sorts as $sort)
thumb !== '') $sort -> thumb @else /images/type/type_no.png @endif" alt=""/>{{ $sort -> name }}
@endforeach
做了 foreach 我想輸入 當前迴圈的 索引 需要判斷 是雙數 還是單數 通過 索引 增加不同的 class名 就是不同的樣式布局
另外 判斷迴圈的資料 裡面 thumb 是縮圖 ,如果thumb 欄位 有縮圖 就輸入,沒有的話 就輸出 一直預設的圖片,
@if($sort -> thumb !== '') $sort -> thumb @else /images/type/type_no.png @endif
這樣判斷可以嗎。
以上2個問題 有大神可以指導一下嗎?
php
@foreach($sorts as $key=>$sort) @if ($key%2 == 0) thumb or /images/type/type_no.png}}" alt=""/>{{ $sort -> name }}
@else
thumb or /images/type/type_no.png}}" alt=""/>{{ $sort -> name }}
@endif @endforeach