2023-09-14 15:10:37 +00:00
|
|
|
<?php
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire\Server\Proxy;
|
2023-09-14 15:10:37 +00:00
|
|
|
|
|
|
|
use App\Models\Server;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class Modal extends Component
|
|
|
|
{
|
|
|
|
public Server $server;
|
|
|
|
|
|
|
|
public function proxyStatusUpdated()
|
|
|
|
{
|
2023-12-07 18:06:32 +00:00
|
|
|
$this->dispatch('proxyStatusUpdated');
|
2023-09-14 15:10:37 +00:00
|
|
|
}
|
|
|
|
}
|