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

16 lines
384 B
PHP
Raw Normal View History

2021-06-27 19:01:43 +00:00
@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