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

9 lines
315 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:04:07 +01:00
{{-- <x-loading wire:loading.delay /> --}}
2023-07-28 21:36:19 +02:00
<div class="flex items-center gap-2" wire:loading.remove.delay.longer>
2023-09-15 13:44:41 +02:00
<div class="badge badge-warning badge-xs"></div>
2023-09-22 15:29:19 +02:00
<div class="text-xs font-medium tracking-wide text-warning">{{ Str::headline($status) }}</div>
2023-06-08 10:55:50 +02:00
</div>