This commit is contained in:
iamEvan 2024-01-27 20:33:22 +00:00
parent c8dd6f07ac
commit f2c4f83f5a

View File

@ -38,7 +38,7 @@ class DeploymentSuccess extends Notification implements ShouldQueue
if (Str::of($this->fqdn)->explode(',')->count() > 1) { if (Str::of($this->fqdn)->explode(',')->count() > 1) {
$this->fqdn = Str::of($this->fqdn)->explode(',')->first(); $this->fqdn = Str::of($this->fqdn)->explode(',')->first();
} }
$this->deployment_url = base_url() . "/project/{$this->project_uuid}/{urlencode($this->environment_name)}/application/{$this->application->uuid}/deployment/{$this->deployment_uuid}"; $this->deployment_url = base_url() . "/project/{$this->project_uuid}/", urlencode($this->environment_name), "/application/{$this->application->uuid}/deployment/{$this->deployment_uuid}";
} }
public function via(object $notifiable): array public function via(object $notifiable): array