enable/disable cronjobs (#203)

This commit is contained in:
Saeed Vaziry
2024-05-11 13:19:19 +02:00
committed by GitHub
parent 1067a5fd33
commit 88223a61f9
14 changed files with 198 additions and 11 deletions

View File

@ -6,6 +6,18 @@
<x-status status="warning">{{ $status }}</x-status>
@endif
@if ($status == \App\Enums\CronjobStatus::DISABLING)
<x-status status="warning">{{ $status }}</x-status>
@endif
@if ($status == \App\Enums\CronjobStatus::DISABLED)
<x-status status="disabled">{{ $status }}</x-status>
@endif
@if ($status == \App\Enums\CronjobStatus::ENABLING)
<x-status status="warning">{{ $status }}</x-status>
@endif
@if ($status == \App\Enums\CronjobStatus::DELETING)
<x-status status="danger">{{ $status }}</x-status>
@endif