mirror of https://github.com/4xmen/xshop.git
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.
23 lines
848 B
PHTML
23 lines
848 B
PHTML
<section class='GridGallery'>
|
|
<div class="{{gfx()['container']}}">
|
|
<h1>
|
|
{{ getSetting($data->area->name.'_'.$data->part.'_title')}}
|
|
</h1>
|
|
<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>
|