coolify/resources/views/livewire/project/application/backup/show.blade.php
Andras Bacsai 8ae56587d5
feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)
Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
2026-08-03 23:11:54 +02:00

19 lines
812 B
PHP

<div>
<x-slot:title>
{{ data_get_str($application, 'name')->limit(10) }} > Backups | Coolify
</x-slot>
<livewire:project.application.heading :application="$application" />
<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 xl:mt-3">
<livewire:project.shared.storages.volume-backups :storage="$backup->backupable"
:resource="$application" :section="$section"
wire:key="volume-backup-{{ $backup->uuid }}-{{ $section }}" />
</div>
</div>
</section>
</div>