28 lines
746 B
PHP
28 lines
746 B
PHP
@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
|
|
|
|
<span class="badge text-bg-{{$statusList[$status->value]["bg"]}}" style="max-width:84px"
|
|
>{{$statusList[$status->value]["text"]}}</span
|
|
>
|