from(config('mail.from.address'), 'Getinge Suzhou HR') ->subject($notifiable->title) ->line($notifiable->content) ->salutation('') ->line('Regards') ->line('Getinge Suzhou HR'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // 通知渠道。inner站内,sms短信,email邮件,wechat微信服务号 'title' => $notifiable->title ?? '通知', 'content' => $notifiable->content ?? '', 'other' => $notifiable->other ?? [] ]; } }