3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/photo.blade.php
2021-06-27 21:01:43 +02:00

15 lines
384 B
PHP

@extends('layouts.main')
@section('content')
<div class="wrapper">
<div class="row x">
@if(!empty($photos))
@foreach($photos as $photo)
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12 y">
<img class="actionfoto" src="data:image/png;base64,{{ $photo->base64 }}">
</div>
@endforeach
@endif
</div>
</div>
@endsection