o = $o; $this->edit = $edit; $this->old = $old; $this->new = $new; $this->updated = $updated; $this->template = $template; } /** * 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, updated: $this->updated, template: $this->template) : __('Unknown'); } }