24 lines
701 B
PHP
24 lines
701 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;">
|
|
@if ($can_edit ?? true)
|
|
<figcaption class="text-center pt-2">
|
|
<button type="button" class="btn btn-xs btn-outline-secondary">
|
|
<i class="fas fa-expand-alt"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-xs btn-outline-danger">
|
|
<i class="fas fa-trash" data-index="{{ $key }}"></i>
|
|
</button>
|
|
</figcaption>
|
|
@endif
|
|
</figure>
|
|
@endforeach
|
|
@endif
|
|
|
|
@if ($can_edit ?? true)
|
|
<script>
|
|
{{ $prefix ?? '' }}handleDeleteImages();
|
|
{{ $prefix ?? '' }}handleEnlargeImages();
|
|
</script>
|
|
@endif |