| 123456789101112131415161718192021222324252627 | 
							- <div {!! $attributes !!}>
 
-     <ol class="carousel-indicators">
 
-         @foreach($items as $key => $item)
 
-         <li data-target="#{!! $id !!}" data-slide-to="{{$key}}" class="{{ $key == 0 ? 'active' : '' }}"></li>
 
-         @endforeach
 
-     </ol>
 
-     <div class="carousel-inner">
 
-         @foreach($items as $key => $item)
 
-         <div class="item {{ $key == 0 ? 'active' : '' }}">
 
-             <img src="{{ url($item['image']) }}" alt="{{$item['caption']}}">
 
-             <div class="carousel-caption">
 
-                 {{$item['caption']}}
 
-             </div>
 
-         </div>
 
-         @endforeach
 
-     </div>
 
-     <a class="left carousel-control" href="#{!! $id !!}" data-slide="prev">
 
-         <span class="fa fa-angle-left"></span>
 
-     </a>
 
-     <a class="right carousel-control" href="#{!! $id !!}" data-slide="next">
 
-         <span class="fa fa-angle-right"></span>
 
-     </a>
 
- </div>
 
 
  |