2023-06-13 08:30:07 +00:00
|
|
|
<div wire:poll.10000ms='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>
|