24 lines
601 B
PHP
24 lines
601 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Project\Database;
|
|
|
|
use App\Models\ScheduledDatabaseBackupExecution;
|
|
use Livewire\Component;
|
|
|
|
class BackupExecution extends Component
|
|
{
|
|
public ScheduledDatabaseBackupExecution $execution;
|
|
|
|
public function download()
|
|
{
|
|
}
|
|
|
|
public function delete(): void
|
|
{
|
|
delete_backup_locally($this->execution->filename, $this->execution->scheduledDatabaseBackup->database->destination->server);
|
|
$this->execution->delete();
|
|
$this->emit('success', 'Backup deleted successfully.');
|
|
$this->emit('refreshBackupExecutions');
|
|
}
|
|
}
|