mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 12:33:03 +00:00
17 lines
255 B
PHP
17 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Server\Proxy;
|
|
|
|
use App\Models\Server;
|
|
use Livewire\Component;
|
|
|
|
class Modal extends Component
|
|
{
|
|
public Server $server;
|
|
|
|
public function proxyStatusUpdated()
|
|
{
|
|
$this->dispatch('proxyStatusUpdated');
|
|
}
|
|
}
|