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.
19 lines
728 B
PHTML
19 lines
728 B
PHTML
4 months ago
|
<section id='CounterGrid'>
|
||
|
<div class="{{gfx()['container']}}">
|
||
|
|
||
|
<div class="row">
|
||
|
@for($i = 1; $i <= \Resources\Views\Segments\CounterGrid::$count; $i++)
|
||
|
<div class="col-lg-3 col-md-6">
|
||
|
<i class="{{getSetting($data->area->name.'_'.$data->part.'_icon'.$i)}}"></i>
|
||
|
<h3>
|
||
|
{{getSetting($data->area->name.'_'.$data->part.'_title'.$i)}}
|
||
|
</h3>
|
||
|
<div class="grid-counter" data-min="0" data-max="{{getSetting($data->area->name.'_'.$data->part.'_number'.$i)}}">
|
||
|
0
|
||
|
</div>
|
||
|
</div>
|
||
|
@endfor
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|