nhance/app/Views/rfq/attachment_files.php
2025-05-07 09:24:25 +05:30

15 lines
677 B
PHP

<?php if (!empty($multi_file_data)) : ?>
<div class="form-group col-md-12">
<label>Select Files:</label>
<?php foreach ($multi_file_data as $file) : ?>
<div class="form-check">
<input type="checkbox" class="form-check-input multi_file_attachment" id="file_<?= $file['id'] ?>" name="selected_attachment_files[]" value="<?= $file['id'] ?>">
<label class="form-check-label" for="file_<?= $file['id'] ?>">
<?= htmlspecialchars($file['docs_name']) ?> - <?= htmlspecialchars($file['file_name']) ?>
</label>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>