Viewing file: c92645d0ed707f0b82247a0eb7456ca4afee062e.php (1.77 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__currentLoopData = $files; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $file): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php $imagePath = $file->fileUrlNew(['id' => $file->id, 'type' => 'items', 'isMediamanager' => true]) ?>
<?php if(!empty($imagePath)): ?>
<div class="image-card" id="<?php echo e($file->id); ?>">
<div class="border border-1 image-card-box-shadow rounded modal-img-des">
<div class="d-flex image-cards-design justify-content-center m-2 align-items-center">
<?php if(isset($file->params) && !empty($file->params['type'] && in_array($file->params['type'], getFileExtensions(5)))): ?>
<div class="card-file-thumb img-fluid image-id p-4 upload-img-size">
<i class="fa fa-file fa-6" aria-hidden="true"></i>
</div>
<?php else: ?>
<div>
<img class="modal-card-image-design neg-transition-scale" src="<?php echo e($imagePath); ?>" alt="<?php echo e(__('Image')); ?>">
</div>
<?php endif; ?>
</div>
<div class="card-body">
<p class="image-name m-0 font-weight-bold"><?php echo e(nameConversion($file->original_file_name)); ?></p>
<small class="image-size-name"><?php echo e(!empty($file->file_size) ? number_format($file->file_size, preference('decimal_digits'), '.', ',') : ''); ?> <?php echo e(__('KB')); ?></small>
</div>
</div>
</div>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<div id="latest-pagination-data-container" class="d-none"><?php echo $files->links(); ?></div>
<?php /**PATH /home/picotech/domains/ecom1.picotech.app/public_html/Modules/MediaManager/Resources/views/image/child_paginate.blade.php ENDPATH**/ ?>
|