/
dimamir
/
coolify
Обзор
Документация
Войти
/
dimamir
/
coolify
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/Livewire/Destination/Index.php
23 строки
379 B
Andras Bacsai
fix: destinations livewire refactor
04 ноя 2024, 00:19
04 ноя 2024, 00:19
4ed76f8
Код
Авторство
О чём код?
<?php namespace App\Livewire\Destination; use App\Models\Server; use Livewire\Attributes\Locked; use Livewire\Component; class Index extends Component { #[Locked] public $servers; public function mount() { $this->servers = Server::isUsable()->get(); } public function render() { return view('livewire.destination.index'); } }