mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-26 04:26:14 +00:00
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.
20 lines
847 B
PHP
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>
|