list-group.blade.php 445 B

1234567891011
  1. <div class="{{$id}}" id="{{$id}}" style="margin-bottom: 20px">
  2. <ul class="list-group">
  3. @foreach($items as $key => $item)
  4. <li class="list-group-item d-flex justify-content-between align-items-center">
  5. <a href="{{ $item['link'] }}" target="_blank">{{ $item['title'] }}</a>
  6. <span class="badge badge-secondary badge-pill">{{ $item['content'] }}</span>
  7. </li>
  8. @endforeach
  9. </ul>
  10. </div>