Advertisement
jalun

Untitled

Oct 16th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <!-- Indicators -->
  2. <ol class="carousel-indicators">
  3. @foreach( $manage_slider as $v_slider )
  4. <li data-target="#carousel-example-generic" data-slide-to="{{ $loop->index }}" class="{{ $loop->first ? 'active' : '' }}"></li>
  5. @endforeach
  6. </ol>
  7.  
  8. <!-- Wrapper for slides -->
  9. <div class="carousel-inner" role="listbox">
  10. @foreach( $manage_slider as $v_slider )
  11. <div class="item {{ $loop->first ? ' active' : '' }}" >
  12. <img src="{{ $v_slider->slider_image }}" alt="{{ $trip->listing->name }}">
  13. </div>
  14. @endforeach
  15. </div>
  16.  
  17. <!-- Controls -->
  18. <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  19. <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  20. <span class="sr-only">Previous</span>
  21. </a>
  22. <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
  23. <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  24. <span class="sr-only">Next</span>
  25. </a>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement