<table role="presentation" class="table table-striped clearfix"> <tbody class="files"> <?php if(!empty($files)): ?> <?php $__currentLoopData = $files; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $file): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="template-upload fade in"> <td> <span class="preview"> <a href="#"> <img style="max-width: 100px" src="<?php echo e($file->preview); ?>"> </a> </span> </td> <td> <p class="name"><?php echo e($file->name); ?></p> <strong class="error label label-danger"></strong> </td> <td> <a class="btn blue start" target="_blank" href="/files/<?php echo e($file->file); ?>" download=""> <i class="fa fa-download"></i> <span>Tải xuống</span> </a> <button class="btn red cancel" onclick="delete_file(<?php echo e($file->id); ?>)"> <i class="fa fa-ban"></i> <span>Xóa</span> </button> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </tbody> </table>