carousel.blade.php 916 B

123456789101112131415161718192021222324252627
  1. <div {!! $attributes !!}>
  2. <ol class="carousel-indicators">
  3. @foreach($items as $key => $item)
  4. <li data-target="#carousel-example-generic" data-slide-to="{{$key}}" class="{{ $key == 0 ? 'active' : '' }}"></li>
  5. @endforeach
  6. </ol>
  7. <div class="carousel-inner">
  8. @foreach($items as $key => $item)
  9. <div class="item {{ $key == 0 ? 'active' : '' }}">
  10. <img src="{{ url($item['image']) }}" alt="{{$item['caption']}}">
  11. <div class="carousel-caption">
  12. {{$item['caption']}}
  13. </div>
  14. </div>
  15. @endforeach
  16. </div>
  17. <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
  18. <span class="fa fa-angle-left"></span>
  19. </a>
  20. <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
  21. <span class="fa fa-angle-right"></span>
  22. </a>
  23. </div>