mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 12:23:48 +00:00
Add full-width and centered layout preferences across the app shell and workspaces. Replace page-size selects with dropdowns and add searchable breadcrumb switching.
20 lines
842 B
PHP
20 lines
842 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-none lg:mt-0">
|
|
<div class="grid min-w-0 gap-8 xl:grid-cols-[210px_minmax(0,1fr)] xl:gap-8">
|
|
<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>
|