1
0
cms11/resources/views/components/sound.blade.php

11 lines
353 B
PHP
Raw Normal View History

<figure>
<audio controls preload="metadata">
2024-05-09 16:48:54 +02:00
<source src="{{ $originalUrl }}" type="audio/mpeg" />
</audio>
<figcaption class="markdown-body">
@if (!empty($originalData['title']))
2024-05-11 16:35:34 +02:00
{!! (new \App\Services\Markdown\Formatter($originalData['title'], $bundle))->render() !!}
@endif
</figcaption>
</figure>