2023-08-10 13:52:54 +00:00
|
|
|
<?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
|
|
|
|
{
|
2023-08-11 08:42:57 +00:00
|
|
|
$this->executions = $this->backup->executions;
|
2023-08-10 13:52:54 +00:00
|
|
|
}
|
|
|
|
}
|