BlogArticleView.php 875 B

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