coolify/resources/views/livewire/project/database/backup/index.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

26 lines
1.1 KiB
PHP

<div>
<x-slot:title>
{{ data_get_str($database, 'name')->limit(10) }} > Backups | Coolify
</x-slot>
<livewire:project.database.heading :database="$database" />
<div class="mt-8 w-full max-w-[1180px] lg:mt-3">
<section class="application-settings-section">
<div class="application-settings-section-header">
<div>
<h2>Scheduled backups</h2>
<p>Automate database backups and track the latest execution for each schedule.</p>
</div>
@can('update', $database)
<x-modal-input buttonTitle="+ Add" title="New Scheduled Backup" isHighlightedButton>
<livewire:project.database.create-scheduled-backup :database="$database" />
</x-modal-input>
@endcan
</div>
<div class="application-settings-section-body p-0!">
<livewire:project.database.scheduled-backups :database="$database" />
</div>
</section>
</div>
</div>