Files
opensem/resources/views/components/uploader/mini-gallery-items.blade.php
Ludovic CANDELLIER e298320119 Fixes on widget uploder
2021-04-15 23:58:51 +02:00

25 lines
698 B
PHP

@if ($images)
@foreach($images as $key => $image)
<figure class="mr-2">
<img src="{{ $image['url'] }}" class="img-thumbnail img-caption" style="max-height:92px;">
<figcaption class="text-center pt-2">
<button type="button" class="btn btn-xs btn-outline-secondary">
<i class="fas fa-expand-alt"></i>
</button>
@if ($can_edit ?? true)
<button type="button" class="btn btn-xs btn-outline-danger">
<i class="fas fa-trash" data-index="{{ $key }}"></i>
</button>
@endif
</figcaption>
</figure>
@endforeach
@endif
<script>
@if ($can_edit ?? true)
{{ $prefix ?? '' }}handleDeleteImages();
@endif
{{ $prefix ?? '' }}handleEnlargeImages();
</script>