goods.blade.php 231 Bytes
@if ($items->count())
    @foreach ($items as $item)
        <option value="{{ $item->id }}" @if ($item->id == $current_id) selected @endif>
            ({{ $item->id }}) {{ $item->title }}
        </option>
    @endforeach
@endif