Files
c-cms-legacy/routes/channels.php
TheGamecraft 51b5bc0500 ALPHA 3.0.1a
2018-07-13 12:41:23 -04: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;
});