This commit is contained in:
Saeed Vaziry
2023-07-02 12:47:50 +02:00
commit 5c72f12490
825 changed files with 41659 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<?php
namespace App\Http\Livewire\Services;
use App\Models\Server;
use App\Traits\RefreshComponentOnBroadcast;
use Illuminate\Contracts\View\View;
use Livewire\Component;
class ServicesList extends Component
{
use RefreshComponentOnBroadcast;
public Server $server;
public function stop(int $id): void
{
$service = $this->server->services()->where('id', $id)->firstOrFail();
$service->stop();
$this->refreshComponent([]);
}
public function start(int $id): void
{
$service = $this->server->services()->where('id', $id)->firstOrFail();
$service->start();
$this->refreshComponent([]);
}
public function restart(int $id): void
{
$service = $this->server->services()->where('id', $id)->firstOrFail();
$service->restart();
$this->refreshComponent([]);
}
public function render(): View
{
return view('livewire.services.services-list', [
'services' => $this->server->services,
]);
}
}