Files
coolify/resources/views/livewire/server/proxy/logs.blade.php
T
Andras Bacsai 2a5197fb30 feat(ui): add shared table controls and multi-select filters
Introduce x-table toolbar/search/filter/sort/loading components and
multi-select deployment history filters with OR within groups and AND
across groups. Add live database/service status for breadcrumbs, shared
variables layout controls, logs viewer toolbar polish, and infrastructure
list filter consistency. Document patterns in UI_REDESIGN.md and cover
with feature tests.
2026-08-06 15:37:30 +02:00

26 lines
1.3 KiB
PHP

<div>
<x-slot:title>
Proxy Logs | Coolify
</x-slot>
<livewire:server.navbar :server="$server" />
<div
class="server-settings-workspace application-settings-workspace mt-4 grid w-full max-w-[1180px] min-w-0 gap-8 lg:mt-0 xl:grid-cols-[210px_minmax(0,1fr)] xl:gap-10">
<x-server.sidebar :server="$server" activeMenu="proxy" activeSubMenu="logs" />
<div class="application-settings-form w-full">
<x-application.settings-section title="Proxy logs"
helper="Search, filter, follow, copy, or download recent output from the Coolify proxy container."
flush class="logs-settings-section">
<x-slot:actions>
<x-status-badge :status="str($server->proxy->status)->headline()"
:type="str($server->proxy->status)->contains('running') ? 'success' : 'neutral'"
class="logs-section-status-badge" />
</x-slot:actions>
<div class="settings-log-panel">
<livewire:project.shared.get-logs :server="$server" container="coolify-proxy"
displayName="Coolify Proxy" :collapsible="false" />
</div>
</x-application.settings-section>
</div>
</div>
</div>