Lae/routes/channels.php

8 lines
165 B
PHP
Raw Normal View History

2022-09-22 04:18:35 +00:00
<?php
use Illuminate\Support\Facades\Broadcast;
Broadcast::channel('users.{userId}', function ($user, $userId) {
return (int) $user->id === (int) $userId;
});