channels.php 549 B

12345678910111213141516171819
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Broadcast Channels
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here you may register all of the event broadcasting channels that your
  8. | application supports. The given channel authorization callbacks are
  9. | used to check if an authenticated user can listen to the channel.
  10. |
  11. */
  12. use Illuminate\Support\Facades\Broadcast;
  13. Broadcast::channel('App.User.{id}', function ($user, $id) {
  14. return (int)$user->id === (int)$id;
  15. });