@php $label = App\Models\Post::STATUS_LABELS[$row->status] ?? 'Unknown'; $badgeClass = match ($row->status) { App\Models\Post::STATUS_PUBLISHED => 'published', App\Models\Post::STATUS_ARCHIVED => 'archived', default => 'pending', }; @endphp {{ $label }}