Files
Leantime/app/Domain/Notifications/Templates/partials/latestNews.blade.php

18 lines
570 B
PHP

<h1>Latest From Leantime</h1>
<br />
<div>
<ul>
@if(is_string($rss))
{{ $rss }}
@endif
@foreach ($rss->channel->item as $item)
<li style="border-bottom:1px solid var(--main-border-color)">
<strong><a href="{{ $item->link }}" target="_blank">{{ $item->title }}</a></strong><br/>
<small class="tw-pb-1">{{ $item->pubDate }}</small><br />
<p>{!! $item->description !!}</p>
<div class="clearall"></div>
</li>
@endforeach
</ul>
</div>