o = $o; $this->edit = $edit; $this->old = $old; $this->new = $new; $this->langtag = $langtag; $this->updated = $updated; } /** * Get the view / contents that represent the component. * * @return View|string */ public function render(): View|string { return $this->o ? $this->o ->render(edit: $this->edit,old: $this->old,new: $this->new,langtag: $this->langtag,updated: $this->updated) : __('Unknown'); } }