coolify/app/Livewire/CommandCenter/Index.php

22 lines
346 B
PHP
Raw Normal View History

2024-01-07 16:23:41 +01:00
<?php
namespace App\Livewire\CommandCenter;
use App\Models\Server;
use Livewire\Component;
class Index extends Component
{
public $servers = [];
2024-06-10 22:43:34 +02:00
public function mount()
{
2024-01-07 16:23:41 +01:00
$this->servers = Server::isReachable()->get();
}
2024-06-10 22:43:34 +02:00
2024-01-07 16:23:41 +01:00
public function render()
{
return view('livewire.command-center.index');
}
}