@foreach ($rss_posts as $key => $post)

{{ $post->title }}

@if ($post->entities_keywords->count() > 0)
{{-- @endif --}} @if ($post->impact_level == 'high')

🔥 High Impact

@endif
More about: @foreach ($post->entities_keywords as $keyword) @if ($keyword->type == 'entity') #{{ $keyword->value_lowercased }} @endif @endforeach
@endif
@if ($post->category) {{ $post->category->name }} @endif @if ($post->published_at->isBetween(now()->subDays(1), now())) {{ $post->published_at->diffForHumans() }} @else {{ $post->published_at->format('d M') }} @endif {{ get_domain_from_url($post->post_url) }}
@endforeach