mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 12:33:06 +00:00
18 lines
344 B
PHP
18 lines
344 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Project\Database;
|
|
|
|
use Livewire\Component;
|
|
|
|
class BackupExecutions extends Component
|
|
{
|
|
public $backup;
|
|
public $executions;
|
|
protected $listeners = ['refreshBackupExecutions'];
|
|
|
|
public function refreshBackupExecutions(): void
|
|
{
|
|
$this->executions = $this->backup->executions;
|
|
}
|
|
}
|