30 lines
958 B
PHP
30 lines
958 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Broadcast Channels
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may register all of the event broadcasting channels that your
|
|
| application supports. The given channel authorization callbacks are
|
|
| used to check if an authenticated user can listen to the channel.
|
|
|
|
|
*/
|
|
|
|
Broadcast::channel('App.User.{id}', function ($user, $id) {
|
|
return (int) $user->id === (int) $id;
|
|
});
|
|
Broadcast::channel('users.{user_id}.notices', function ($user, $user_id) {
|
|
return (int) $user->id === (int) $user_id;
|
|
});
|
|
Broadcast::channel('users.{user_id}.chat.message', function ($user, $user_id) {
|
|
return (int) $user->id === (int) $user_id;
|
|
});
|
|
Broadcast::channel('chat.with.users.{user_id}', function ($user, $user_id) {
|
|
return (int) $user->id === (int) $user_id;
|
|
});
|
|
|
|
Broadcast::channel('news', function ($user) {
|
|
return true;
|
|
});
|