from(config('notification.sender.address'), config('notification.sender.name')) ->subject(config('app.name').' - account locked') ->markdown('mail.account-locked', ['name' => $notifiable->name]); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } }