Gustavo Luigi 2023-07-15 16:08:41 -03:00
parent 10f76da1ea
commit 0047b9a4bc
1 changed files with 7 additions and 5 deletions

View File

@ -37,11 +37,13 @@
<h2>Bilder</h2>
</div>

@foreach($content->bilder as $bild)
<div class="col-12 col-md-3 mb-4">
<img src="{{$bild}}" class="img-fluid rounded">
</div>
@endforeach
@if($content->bilder)
@foreach($content->bilder as $bild)
<div class="col-12 col-md-3 mb-4">
<img src="{{$bild}}" class="img-fluid rounded">
</div>
@endforeach
@endif

<div class="col-3"></div>
</div>