@props(['recentPosts' => collect()])
Posts Recém Publicados
@forelse($recentPosts as $post)
{{ $post->title }}
{{ $post->scheduled_at->format('d/m/Y H:i') }}
@if($post->isFullyPublished())
@elseif($post->isPartiallyPublished())
@else
@endif
@empty

Nenhum post publicado recentemente

@endforelse