This repository has been archived on 2021-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
questcequonmange/routes/channels.php
2019-05-13 00:35:06 +02:00

17 lines
508 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;
});