album = $album; $this->photo = $photo; $this->comment = $comment; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage|MailableBase */ public function toMail($notifiable) { $mailable = new ModeratePhotoCommentMailable($notifiable, $this->album, $this->photo, $this->comment); $this->setPropertiesOnMailable($mailable, $notifiable); return $mailable; } }