user === null && $this->userId !== null ){ $this->user = app(XenforoService::class)->getXfUser($this->userId); if( $this->user === null ){ $this->user = app(XenforoService::class)->getXfUser(config('xenforo.bot_user_id')); } } } /** * Get the view / contents that represent the component. */ public function render(): View|Closure|string { return view('components.xf-username-link'); } }