coolify/resources/views/components/status/restarting.blade.php

14 lines
483 B
PHP
Raw Normal View History

2023-07-28 21:36:19 +02:00
@props([
2023-09-22 15:29:19 +02:00
'status' => 'Restarting',
2023-07-28 21:36:19 +02:00
])
2023-12-06 15:30:04 +01:00
<x-loading wire:loading.delay.longer />
2024-02-07 14:55:06 +01:00
<div class="flex items-center " wire:loading.remove.delay.longer>
2023-09-15 13:44:41 +02:00
<div class="badge badge-warning badge-xs"></div>
2024-02-07 14:55:06 +01:00
<div class="pl-2 pr-1 text-xs font-bold tracking-widerr text-warning">
{{ str($status)->before(':')->headline() }}
</div>
@if (!str($status)->startsWith('Proxy'))
<div class="text-xs text-warning">({{ str($status)->after(':') }})</div>
@endif
2023-06-08 10:55:50 +02:00
</div>