Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Autoría | Ultima modificación | Ver Log |

<?php
use LeadersLinked\Library\Functions;

$this->inlineScript()->captureStart();
echo <<<JS
jQuery( document ).ready(function( $ ) {
    $('#suggestions-list-company-suggestions').mCustomScrollbar({
        setHeight: '450px',
        axis:'y' // vertical and horizontal scrollbar
    });
});
JS;
$this->inlineScript()->captureEnd();

?>

<div class="suggestions-list" id="suggestions-list-company-suggestions">
        <div class="sd-title">
                <h3>LABEL_SIMILAR_COMPANIES</h3>
        </div><!--sd-title end-->
        <?php if($items) :  ?>
        <?php foreach($items as $item) :  ?>
        
        <div class="suggestion-usd ">
                <img style="width: 50px; height: auto" src="<?php echo $this->url('storage', ['type' => 'user', 'code' => $item['uuid'], 'filename' => $item['image']])?>" alt="">
                <div class="sgt-text">
                        <h4><?php echo trim($item['name']) ?></h4>
                </div>
                <span><a href="<?php echo $this->url('company/view', ['id' => $item['uuid'] ]) ?>"><i class="fa fa-external-link"></i></a></span>
        </div>
        
                <?php endforeach; ?>
                <?php else: ?>
                <div class="view-more">
                        No hay sugerencias
                </div>
                <?php endif; ?> 
</div>