application = $application; $this->recipient = $recipient; } public function build(): NotifyApplicationExpertChanged { $expert = $this->application->expert()->first(); $subject = "Назначен эксперт по заявке №{$this->application->number}"; if ($this->recipient->id === ($expert->user->id ?? null)) $subject = "Вы назначены экспертом по заявке №{$this->application->number}"; return $this->subject($subject)->view("mail.applications.expert-changed"); } }