2016-12-30 15:46:01 -06:00
|
|
|
<?php
|
|
|
|
|
|
2019-12-20 15:10:23 -06:00
|
|
|
use Illuminate\Support\Facades\Broadcast;
|
|
|
|
|
|
2016-12-30 15:46:01 -06:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2020-08-20 15:32:30 -05:00
|
|
|
Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
|
2016-12-30 15:46:01 -06:00
|
|
|
return (int) $user->id === (int) $id;
|
|
|
|
|
});
|