/
dimamir
/
coolify
Обзор
Документация
Войти
/
dimamir
/
coolify
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/Livewire/LayoutPopups.php
27 строк
496 B
Thijmen
Fix styling
10 июн 2024, 23:43
10 июн 2024, 23:43
d86274c
Код
Авторство
О чём код?
<?php namespace App\Livewire; use Livewire\Component; class LayoutPopups extends Component { public function getListeners() { $teamId = auth()->user()->currentTeam()->id; return [ "echo-private:team.{$teamId},TestEvent" => 'testEvent', ]; } public function testEvent() { $this->dispatch('success', 'Realtime events configured!'); } public function render() { return view('livewire.layout-popups'); } }