vito/resources/views/servers/partials/status.blade.php
Saeed Vaziry b2083fc6b2
Migrate to HTMX (#114)
Dropped Livewire
Added HTMX
Added Blade code lint
Drop Mysql and Redis
Migrate to SQLite
2024-03-06 17:02:59 +01:00

16 lines
473 B
PHP

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