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