<?phpnamespaceIlluminate\Notifications;useIlluminate\Queue\SerializesModels;classNotification{useSerializesModels;/** * The unique identifier for the notification. * * @var string */public$id;/** * Get the channels the event should broadcast on. * * @return array */publicfunctionbroadcastOn(){return[];}}