21 lines
961 B
PHP
21 lines
961 B
PHP
|
|
@props([
|
||
|
|
'modalId',
|
||
|
|
'title' => 'Attachment Preview',
|
||
|
|
])
|
||
|
|
|
||
|
|
<div class="modal fade" id="{{ $modalId }}" tabindex="-1" aria-hidden="true">
|
||
|
|
<div class="modal-dialog modal-lg modal-dialog-centered">
|
||
|
|
<div class="modal-content">
|
||
|
|
<div class="modal-header">
|
||
|
|
<h5 class="modal-title">{{ $title }} - <span class="attachment-preview-modal-title"></span></h5>
|
||
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||
|
|
</div>
|
||
|
|
<div class="modal-body">
|
||
|
|
<img class="img-fluid d-none attachment-preview-image" alt="Attachment preview">
|
||
|
|
<object class="w-100 d-none attachment-preview-object" style="min-height: 480px;" type="application/pdf"></object>
|
||
|
|
<div class="text-center text-muted attachment-preview-placeholder">Tidak ada file untuk ditampilkan.</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|