Files
chatroom/routes/channels.php
T
2026-02-26 12:02:00 +08:00

8 lines
163 B
PHP

<?php
use Illuminate\Support\Facades\Broadcast;
Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});