15 lines
578 B
PHP
15 lines
578 B
PHP
@if($arts && count($arts))
|
|
<div class="container_photo gallery_box">
|
|
@foreach($arts as $art)
|
|
<div class="photo_frame">
|
|
<a href="/art/{{ $art->id }}/{{ \Illuminate\Support\Str::slug($art->name ?? '') }}">
|
|
<img src="{{ $art->thumb }}" srcset="{{ $art->thumb_srcset }}" loading="lazy" decoding="async" alt="{{ $art->name }}" class="img-responsive">
|
|
</a>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
<br style="clear:both"><br>
|
|
@else
|
|
<p class="text-muted">No uploads for this date.</p>
|
|
@endif
|