mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 12:33:03 +00:00
22 lines
346 B
PHP
22 lines
346 B
PHP
<?php
|
|
|
|
namespace App\Livewire\CommandCenter;
|
|
|
|
use App\Models\Server;
|
|
use Livewire\Component;
|
|
|
|
class Index extends Component
|
|
{
|
|
public $servers = [];
|
|
|
|
public function mount()
|
|
{
|
|
$this->servers = Server::isReachable()->get();
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.command-center.index');
|
|
}
|
|
}
|