Files
lucent-laravel/front/views/records-editor/status.blade.php
T
2024-09-28 18:36:18 +03:00

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
>