Skip to content

Commit ae1d10f

Browse files
committed
{{}}
1 parent ea3a1d4 commit ae1d10f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/resources/views/public/_images.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
@foreach ($model->images as $image)
44
<li class="image-list-item">
55
<a class="image-list-item-link"
6-
href="{!! $image->present()->image(1200, 1200, ['resize']) !!}"
6+
href="{{ $image->present()->image(1200, 1200, ['resize']) }}"
77
data-caption="{{ $image->alt_attribute }}"
88
data-fancybox="{{ $model->slug ? : 'group' }}"
99
data-options='{ "buttons": ["close"], "infobar": false }'
1010
>
11-
<img class="image-list-item-image" src="{!! $image->present()->image(370, 370) !!}" width="{{ $image->width }}" height="{{ $image->height }}" alt="{{ $image->alt_attribute }}">
11+
<img class="image-list-item-image" src="{{ $image->present()->image(370, 370) }}" width="{{ $image->width }}" height="{{ $image->height }}" alt="{{ $image->alt_attribute }}">
1212
</a>
1313
</li>
1414
@endforeach

0 commit comments

Comments
 (0)