bulkExportModal = $bulkExportModal; } /** * Get the channels the event should broadcast on. * * @return \Illuminate\Broadcasting\Channel|array */ public function broadcastOn() { return new PrivateChannel('channel-name'); } /** * The name of the queue on which to place the broadcasting job. */ public function broadcastQueue() { return 'default'; } }