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/GridGallery/GridGallery.blade.php

26 lines
911 B
PHTML

<section class='GridGallery'>
<div class="{{gfx()['container']}}">
<h1>
{{ getSetting($data->area->name.'_'.$data->part.'_title')}}
</h1>
<p>
{{$gallery->description}}
</p>
<div class="row">
@foreach(\App\Models\Gallery::where('status',1)->orderBy('id')->limit( getSetting($data->area->name.'_'.$data->part.'_limit'))->get() as $gallery)
<div class="col-md p-1">
<a class="gallery-grid" href="{{$gallery->webUrl()}}">
<img src="{{$gallery->imgUrl()}}" alt="{{$gallery->title}}">
<h4>
<span>
{{$gallery->title}}
</span>
</h4>
</a>
</div>
@endforeach
</div>
</div>
</section>