Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 řádky
508 B

  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('App.User.{id}', function ($user, $id) {
  13. return (int) $user->id === (int) $id;
  14. });