Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. @for($i = 1; $i < count($round_table); $i++)
  2. @if($i == 1 || $round_table[$i]->round_id != $round_table[$i-1]->round_id)
  3. <div class="card">
  4. <div class="card-header" id="headingOne">
  5. <h5 class="mb-0">
  6. <button class="btn btn-link btn-block" type="button" data-toggle="collapse" data-target="#collapse{{$round_table[$i]->round_id}}" aria-expanded="true" aria-controls="collapseOne">
  7. <ul class="list-button"><li>
  8. <img src="{{ asset('img/divider-black.png') }}">
  9. <img src="{{ asset('img/divider-carcassonne-up-black.png') }}">
  10. <img src="{{ asset('img/divider-black.png') }}">
  11. </li>
  12. <li>Round {{$round_table[$i]->round_id}}</li>
  13. </ul>
  14. </button>
  15. </h5>
  16. </div>
  17.  
  18. <div id="collapse{{$round_table[$i]->round_id}}" class="collapse show fade" aria-labelledby="headingOne" data-parent="#accordionExample">
  19. <!-- try -->
  20.  
  21. @foreach($round_table as $round)
  22. @if($round->round_id == $round_table[$i]->round_id)
  23. <ul class='table_list'><li><a href="#" class="table_link">Tafel: {{ $round->table }}</a></li></ul>
  24. @endif
  25. @endforeach
  26. </div>
  27. </div>
  28. @endif
  29. @endfor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement