coolify/resources/views/livewire/project/service/status.blade.php
Andras Bacsai fc9e61b7b4 feat(services): open resource settings in a modal with restart limits
Move service application and database settings into an embedded modal with a footer, subtitle helper, and Docker restart-count control. Accept max_restart_count on the service applications API, cap compose YAML collection aliases, and tighten status, backup, and database sidebar layouts.
2026-09-10 17:39:56 +02:00

8 lines
462 B
PHP

<div wire:poll.10000ms="refreshStatus" class="flex items-center gap-1">
@php($displayStatus = $selectedResource?->status ?? $service->status)
<x-status-summary :status="$displayStatus" :title="$selectedResource ? 'Resource status' : 'Service status'"
:container-name="$selectedResource ? 'Container' : 'Containers'" />
@if ($selectedResource)
<x-application.restart-limit-warning :application="$selectedResource" />
@endif
</div>