email) { $via[] = 'mail'; } if ($notifiable->mobile) { $via[] = 'sms'; } return $via; } /** * Get the mail representation of the notification. */ public function toMail($notifiable): MailMessage { return (new MailMessage) ->subject('通知主题') ->greeting('你好!') ->line('The introduction to the notification.') ->action('Notification Action', 'https://laravel.com') ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. */ public function toArray($notifiable): array { return []; } }