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> <h2>Bilder</h2>
</div> </div>


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


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