| 1 |
www |
1 |
<?php
|
|
|
2 |
use LeadersLinked\Library\Functions;
|
|
|
3 |
?>
|
|
|
4 |
|
|
|
5 |
<div class="widget suggestions full-width">
|
|
|
6 |
<div class="sd-title">
|
|
|
7 |
<h3>LABEL_SIMILAR_GROUPS</h3>
|
|
|
8 |
</div><!--sd-title end-->
|
|
|
9 |
<?php foreach($items as $item) : ?>
|
|
|
10 |
<div class="suggestion-usd">
|
|
|
11 |
<img src="<?php echo $this->url('storage', ['type' => 'group', 'code' => $item['group_uuid'], 'filename' => $item['image']])?>" alt="">
|
|
|
12 |
<div class="sgt-text">
|
|
|
13 |
<h4><?php echo $name ?></h4>
|
|
|
14 |
</div>
|
|
|
15 |
<span><a href="#" class="btn-send-message"><i class="la la-external-link"></i></a></span>
|
|
|
16 |
</div>
|
|
|
17 |
<?php endforeach; ?>
|
|
|
18 |
</div>
|
|
|
19 |
|