channels.php 529 B

12345678910111213141516
  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. //Broadcast::channel('batch.{batch_id}', function ($user, $batch_id) {
  13. // return (int) $user->id === (int) $batch_id;
  14. //});