application->destination->server, $this->application->id, 0 ); $currentContainer = $containers->first( fn ($container) => data_get($container, 'State') === 'running' ) ?? $containers->first(); $this->currentInternalHostname = data_get($currentContainer, 'Names'); } catch (\Throwable) { $this->currentInternalHostname = null; } finally { $this->currentInternalHostnameLoaded = true; } } public function render(): View { return view('livewire.project.application.internal-access'); } }