AutorÃa | Ultima modificación | Ver Log |
<?php
use LeadersLinked\Library\Functions;
$this->inlineScript()->captureStart();
echo <<<JS
jQuery( document ).ready(function( $ ) {
$('#suggestions-list-group').mCustomScrollbar({
setHeight: '450px',
axis:'y' // vertical and horizontal scrollbar
});
});
JS;
$this->inlineScript()->captureEnd();
?>
<div class="widget suggestions full-width " id="suggestions-list-group">
<div class="sd-title">
<h3>LABEL_GROUPS_SUGGESTION</h3>
</div><!--sd-title end-->
<?php foreach($items as $item) : ?>
<div class="suggestion-usd">
<img src="<?php echo $this->url('storage', ['type' => 'group', 'code' => $item['group_uuid'], 'filename' => $item['image']])?>" alt="">
<div class="sgt-text">
<h4><?php echo $name ?></h4>
</div>
<span><a href="#" class="btn-send-message"><i class="la la-external-link"></i></a></span>
</div>
<?php endforeach; ?>
</div>