Examples of code I've written in PHP, Javascript, SCSS, etc.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

19 lines
558 B

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