refreshDeployments(); } public function refreshDeployments(): void { $serverIds = Server::ownedByCurrentTeamCached()->pluck('id'); $columns = [ 'id', 'application_id', 'application_name', 'deployment_url', 'deployment_uuid', 'pull_request_id', 'server_name', 'server_id', 'status', 'created_at', 'finished_at', ]; $baseQuery = ApplicationDeploymentQueue::query() ->with(['application.environment.project']) ->whereIn('server_id', $serverIds); $this->activeDeployments = (clone $baseQuery) ->whereIn('status', [ ApplicationDeploymentStatus::IN_PROGRESS->value, ApplicationDeploymentStatus::QUEUED->value, ]) ->orderBy('status') ->orderBy('id') ->limit(5) ->get($columns); $this->recentDeployments = (clone $baseQuery) ->whereNotIn('status', [ ApplicationDeploymentStatus::IN_PROGRESS->value, ApplicationDeploymentStatus::QUEUED->value, ]) ->orderByDesc('id') ->limit(5) ->get($columns); } public function render() { return view('livewire.dashboard.active-deployments'); } }