@props(['post']) @php $percentage = $post->publishedPercentage(); $isFullyPublished = $post->isFullyPublished(); $publishedCount = $post->tasks()->whereHas('check')->count(); $totalCount = $post->tasks()->count(); @endphp
@if($isFullyPublished) Publicado @elseif($percentage > 0) {{ $publishedCount }}/{{ $totalCount }} publicados @else Pendente @endif