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/components/show.blade.php
2021-06-29 22:05:00 +02:00

16 lines
424 B
PHP

<div class="card" {!! $style !!}>
<img class="card-cover" src="{{ $show->image }}">
<div class="card-body">
<h4 class="card-title">{{ $show->title }}</h4>
<p>{{ $show->description }}</p>
@if(isset($body))
{{ $body }}
@endif
</div>
@if(isset($slot) && !empty(str_replace(' ', '', $slot)))
<p class="card-footer">
{{ $slot }}
</p>
@endif
</div>