@php $statusClasses = [ 'published' => 'badge-success', 'draft' => 'badge-warning', 'archived' => 'badge-secondary', 'cancelled' => 'badge-danger', ]; $statusTexts = [ 'published' => __('Published'), 'draft' => __('Draft'), 'archived' => __('Archived'), 'cancelled' => __('Cancelled'), ]; @endphp {{ $statusTexts[$status] ?? ucfirst($status) }}