You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/resources/views/segments/galleries_page/GalleriesList/GalleriesList.blade.php

24 lines
731 B
PHTML

<section class='GalleriesList'>
<div class="{{gfx()['container']}}">
<h1>
{{$title}}
</h1>
<div class="row">
@foreach($galleries as $gallery)
<div class="col-md-6 p-1">
<div class="gallrey-item">
<a href="{{$gallery->webUrl()}}">
<img src="{{$gallery->imgUrl()}}" alt="{{$gallery->title}}">
</a>
<h4 class="text-center">
{{$gallery->title}}
</h4>
</div>
</div>
@endforeach
</div>
{{$galleries->links()}}
</div>
</section>