coolify/app/Livewire/Server/Proxy/Modal.php

17 lines
255 B
PHP
Raw Normal View History

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