Feuerwehr-eppingen/resources/views/inc/layout/breaking_news.blade.php
Marco Glietsch f4ba271c91 Hinzugefügt
- Kontaktformular für Nikolausaktion
- Lauftext für Kurzmeldungen
2020-11-19 10:04:02 +01:00

17 lines
536 B
PHP
Executable File

@php
$news = BreakingNews::getNews();
@endphp
@if($news->count())
<div class="breaking-news border border-secondary rounded bg-warning pt-3 pb-0 mb-2">
<marquee onmouseover="this.stop();" onmouseout="this.start();">
<ul class="m-0">
@foreach($news as $n)
<li class="d-inline-block ml-4 mr-4">
{!! $n->content !!}
</li>
@endforeach
</ul>
</marquee>
</div>
@endif