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

{{ $post->title }}

@if ($post->entities_keywords->count() > 0)
{{-- @if ($post->entities) --}} @foreach ($post->entities_keywords as $keyword) {{-- @if ($keyword->type == 'entity') --}} @if ($loop->iteration <= 3) @if ($keyword->is_main)

{{ $keyword->value }}

@else

{{ $keyword->value }}

@endif @elseif ($loop->iteration > 3 && count($post->entities_keywords) > 3)

+{{ count($post->entities_keywords) - 3 }} more

@break @endif {{-- @endif --}} @endforeach {{-- @endif --}} @if ($post->impact_level == 'high')

🔥 High Impact

@endif
@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 @if (!is_empty($post->bites)) {{ min_read($post->bites) }} @endif {{ get_domain_from_url($post->post_url) }}
@endforeach