17 lines
536 B
PHP
Executable File
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 |