Some checks failed
Build MapleDeploy Coolify Image / build (push) Failing after 8s
- Replace logos, colors (red/stone palette), and fonts (Overlock/Inter) - Replace text logos with PNG from marketing API - Update AGPL source links to match repo owner - Update PostgreSQL to 17 for Alpine 3.23 - Add Forgejo Actions CI workflow - Remove upstream GitHub Actions workflows - Remove Coolify Cloud upsells, Hetzner provider, and telemetry - Update auto-update to point to Forgejo registry
19 lines
755 B
PHP
19 lines
755 B
PHP
<div>
|
|
<x-slot:title>
|
|
{{ data_get_str($database, 'name')->limit(10) }} > Backups | MapleDeploy
|
|
</x-slot>
|
|
<h1>Backups</h1>
|
|
<livewire:project.shared.configuration-checker :resource="$database" />
|
|
<livewire:project.database.heading :database="$database" />
|
|
<div>
|
|
<div class="flex gap-2">
|
|
<h2 class="pb-4">Scheduled Backups</h2>
|
|
@can('update', $database)
|
|
<x-modal-input buttonTitle="+ Add" title="New Scheduled Backup">
|
|
<livewire:project.database.create-scheduled-backup :database="$database" />
|
|
</x-modal-input>
|
|
@endcan
|
|
</div>
|
|
<livewire:project.database.scheduled-backups :database="$database" />
|
|
</div>
|
|
</div>
|