Files
coolify/resources/views/livewire/project/application/backup/show.blade.php
T
Andras Bacsai 5842d77b81 feat(volume-backups): add service backup UI and polish layouts
Add dedicated service volume-backup Livewire pages and routes, wire
shared storage backups for services, and pass S3 trusted hosts into
MinIO resolve options. Also refine breadcrumbs, sticky sidebars,
destination/GitHub layouts, resource filters, and login recovery link.
2026-08-05 15:15:50 +02:00

20 lines
847 B
PHP

<div>
<x-slot:title>
{{ data_get_str($application, 'name')->limit(10) }} > Backups | Coolify
</x-slot>
<livewire:project.application.heading :application="$application" wire:key="application-heading-backup-show" />
<section class="application-settings-workspace mt-4 w-full max-w-[1180px] lg:mt-0">
<div class="grid min-w-0 gap-8 xl:grid-cols-[210px_minmax(0,1fr)] xl:gap-10">
<x-backup-sidebar context="application" :parameters="$parameters" :section="$section" />
<div class="min-w-0">
<livewire:project.shared.storages.volume-backups :storage="$backup->backupable"
:resource="$application" :section="$section"
wire:key="volume-backup-{{ $backup->uuid }}-{{ $section }}" />
</div>
</div>
</section>
</div>