coolify/resources/views/livewire/project/application/status.blade.php

10 lines
265 B
PHP
Raw Normal View History

2023-06-13 10:30:07 +02:00
<div wire:poll.10000ms='applicationStatusChanged'>
2023-05-22 22:30:33 +02:00
@if ($application->status === 'running')
2023-06-08 10:55:50 +02:00
<x-status.running />
@elseif($application->status === 'restarting')
<x-status.restarting />
2023-05-22 22:30:33 +02:00
@else
2023-06-08 10:55:50 +02:00
<x-status.stopped />
2023-05-22 22:30:33 +02:00
@endif
</div>