vito/resources/views/livewire/application/partials/deployment-status.blade.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

10 lines
349 B
PHP

@if($status == \App\Enums\DeploymentStatus::DEPLOYING)
<x-status status="warning">{{ $status }}</x-status>
@endif
@if($status == \App\Enums\DeploymentStatus::FINISHED)
<x-status status="success">{{ $status }}</x-status>
@endif
@if($status == \App\Enums\DeploymentStatus::FAILED)
<x-status status="danger">{{ $status }}</x-status>
@endif