23 lines
411 B
PHP
23 lines
411 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Livewire\SharedVariables\Server;
|
||
|
|
|
||
|
|
use App\Models\Server;
|
||
|
|
use Illuminate\Support\Collection;
|
||
|
|
use Livewire\Component;
|
||
|
|
|
||
|
|
class Index extends Component
|
||
|
|
{
|
||
|
|
public Collection $servers;
|
||
|
|
|
||
|
|
public function mount()
|
||
|
|
{
|
||
|
|
$this->servers = Server::ownedByCurrentTeamCached();
|
||
|
|
}
|
||
|
|
|
||
|
|
public function render()
|
||
|
|
{
|
||
|
|
return view('livewire.shared-variables.server.index');
|
||
|
|
}
|
||
|
|
}
|