template = $template; $this->code = $code; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['database']; } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'title' => $this->template->title . '兑换码', 'start_date' => $this->template->start_date, 'end_date' => $this->template->end_date, 'code' => $this->code, ]; } }