@props([ 'posts' => collect(), 'mediaRatioClass' => 'aspect-[16/9]', ]) @php $posts = collect($posts); @endphp @if ($posts->isNotEmpty())
@foreach ($posts as $post) @php $tenantName = $post->tenant?->name ?: $post->tenant_key; $tags = collect($post->tags ?? []); $publishedDate = optional($post->published_at)->format('Y.m.d H:i') ?? '-'; @endphp @endforeach
@endif