news = $news; $this->setMailable( $news->subject, 'notifications.mail.news', ['news' => $news] ); } /** * Get the array representation of the notification. * * @param mixed $notifiable * * @return array */ public function toArray($notifiable) { return [ 'news_id' => $this->news->id, ]; } }