@php
$statusColors = [
'ready' => 'primary',
'published' => 'success',
'fetch_failed' => 'danger',
'processing' => 'secondary',
'manual_review' => 'warning',
'ignored' => 'secondary',
'given_up' => 'warning',
];
$color = $statusColors[$offer->status] ?? 'secondary';
@endphp
{{ $offer->status_label }}
@if($offer->post_attempts > 0 && !$offer->posted_at)
{{ $offer->post_attempts }}x tentativa(s)
@endif
@if($offer->posted_at)
{{ $offer->posted_at->diffForHumans() }}
@endif