_gallery_list_view.php 650 Bytes
<?php
    use yii\helpers\Html;
?>
<div class="gallery-box">
    <a href="#" class="gallery-box-min"><?= Html::img($model->cover)?></a>
    <div class="gallery-box-hidden">
        <div class="gallery-box-preview">
            <?php foreach($model->ShowGallery($model->photo ) as $image):?>
            <span data-link="<?= $image ?>"></span>
            <?php endforeach; ?>

        </div>
        <div class="gallery-box-big">
            <?php foreach(explode(',', $model->photo ) as $image): ?>
                <span data-link="<?= $model->minImg($image, 'original'); ?>"></span>
            <?php endforeach; ?>
        </div>
    </div>
</div>