Files
crewsportswear/resources/views/teamstore-sublayouts/stores.blade.php
Frank John Begornia 562f03488a Initial Commit
2019-03-06 20:32:31 +08:00

49 lines
1.5 KiB
PHP

@extends('app')
@section('content')
<style>
a.thumbnail>img {
height: 250px;
}
.hide-bullets {
list-style:none;
margin-left: -40px;
margin-top:20px;
}
.thumbnail{
border: none;
margin-bottom: 50px;
}
.li-custom{
padding:10px;
}
</style>
<div class="container">
<div class="row">
<h2 class="col-xs-12">Team Stores</h2>
</div><!-- /row -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="row hidden-xs" id="slider-thumbs">
<!-- Bottom switcher of slider -->
<ul class="hide-bullets">
@foreach ($stores_array as $store)
<li class="li-custom col-sm-3">
<div style="border: 1px solid #dddddd;">
<a class="thumbnail" href="{{ url('teamstore') . '/' . $store->StoreUrl }}">
<img src="{{asset('public/images/teamstore') . '/' . $store->StoreUrl . '/' . $store->StoreLogo }}">
</a>
<h4 style="border-top: 1px solid #dddddd; padding: 10px;" class="text-center">{{ $store->StoreName }}</h4>
</div>
</li>
@endforeach
</ul>
</div>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
@endsection