$this->getName($this->recipient), "sender" => $this->getName($this->sender), "key" => $notifiable->id, ]); } protected function getName(User $user): string { if ($user->profile->slack_id !== null) { return "<@{$user->profile->slack_id}>"; } return $user->profile->full_name; } }