diff --git a/src/Commands/Output/DeploymentSuccess.php b/src/Commands/Output/DeploymentSuccess.php index 694428a3..23208519 100644 --- a/src/Commands/Output/DeploymentSuccess.php +++ b/src/Commands/Output/DeploymentSuccess.php @@ -60,6 +60,12 @@ protected function displayDnsRecordsChanges(Deployment $deployment) Helpers::line(); } + Helpers::table([ + 'Domain', 'Alias / CNAME', + ], collect($deployment->target_domains)->map(function ($target, $domain) { + return [$domain, $target['domain']]; + })->all()); + $vapor = Helpers::app(ConsoleVaporClient::class); collect($vapor->zones($deployment->project['team_id']))->filter(function ($zone) use ($deployment) {