Skip to content

Instantly share code, notes, and snippets.

@beyazitkolemen
Created October 16, 2017 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beyazitkolemen/ee24fe6f1ed6002ddc849b23dfd130ac to your computer and use it in GitHub Desktop.
Save beyazitkolemen/ee24fe6f1ed6002ddc849b23dfd130ac to your computer and use it in GitHub Desktop.
<div class="features_items"><!--recommended_items-->
<div id="magazalar" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
@foreach($lastshop->chunk(4) as $lshop)
<div class="item {{ $loop->first ? 'active' : '' }}">
@foreach($lshop as $shop)
<div class="col-sm-3" >
@include('front.layout.store')
</div>
@endforeach
<div class="clearfix"></div>
</div>
@endforeach
</div>
<a class="left recommended-item-control" href="#magazalar" data-slide="prev">
<i class="fa fa-angle-left"></i>
</a>
<a class="right recommended-item-control" href="#magazalar" data-slide="next">
<i class="fa fa-angle-right"></i>
</a>
</div><!--/recommended_items-->
<!--/recommended_items-->
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment