@php $statusList = [ "published" => [ "value" => "published", "text" => "Published", "bg" => "success", "color" => "white", ], "trashed" => [ "value" => "trashed", "text" => "Trashed", "bg" => "danger", "color" => "white", ], "draft" => [ "value" => "draft", "text" => "Draft", "bg" => "warning", "color" => "dark", ], ]; @endphp {{$statusList[$status->value]["text"]}}