Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

13 lines
452 B
PHP

@if($status == \App\Enums\SiteStatus::READY)
<x-status status="success">{{ $status }}</x-status>
@endif
@if($status == \App\Enums\SiteStatus::INSTALLING)
<x-status status="warning">{{ $status }}</x-status>
@endif
@if($status == \App\Enums\SiteStatus::INSTALLATION_FAILED)
<x-status status="danger">{{ $status }}</x-status>
@endif
@if($status == \App\Enums\SiteStatus::DELETING)
<x-status status="danger">{{ $status }}</x-status>
@endif