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

10 lines
264 B
PHP
Raw Normal View History

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