13 lines
253 B
PHP
13 lines
253 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Broadcast;
|
|
|
|
|
|
Broadcast::channel('users.admin', function ($user) {
|
|
return in_array($user->role, [1, 2]);
|
|
});
|
|
|
|
Broadcast::channel('user.{id}', function ($user, $id) {
|
|
return (int) $user->id === (int) $id;
|
|
});
|