Event.php 605 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Events;
  3. use Illuminate\Broadcasting\Channel;
  4. use Illuminate\Broadcasting\InteractsWithSockets;
  5. use Illuminate\Broadcasting\PrivateChannel;
  6. use Illuminate\Foundation\Events\Dispatchable;
  7. use Illuminate\Queue\SerializesModels;
  8. class Event
  9. {
  10. use Dispatchable, InteractsWithSockets, SerializesModels;
  11. /**
  12. * Create a new event instance.
  13. *
  14. * @return void
  15. */
  16. public function __construct()
  17. {
  18. //
  19. }
  20. /**
  21. * Get the channels the event should broadcast on.
  22. *
  23. * @return Channel|array
  24. */
  25. public function broadcastOn()
  26. {
  27. return new PrivateChannel('channel-name');
  28. }
  29. }