markdown('notifications.email') ->greeting(__('notifications.greeting', ['firstname' => $notifiable->first_name])) ->subject(__('notifications.newuser.subject', ['name' => config('app.name')])) ->line(__('notifications.newuser.intro', [ 'name' => $currentUser->first_name.' '.$currentUser->last_name, ])) ->action( __('notifications.newuser.button'), route('users.firstlogin', $notifiable->remember_token) ) ->salutation(__('notifications.salutation', [ 'name' => $currentUser->first_name.' '.$currentUser->last_name, ])) ->line(__('notifications.newuser.outro')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * * @return array */ public function toArray($notifiable) { return [ // ]; } }