title = $title; } public function display($callback = null) { $title = $this->trans('title'); if (func_num_args() == 2) { [$title, $callback] = func_get_args(); } $html = $this->value; if ($callback instanceof \Closure) { $html = Helper::render( $callback->call($this->row, $this) ); } $title = $this->title ?: $title; $key = $this->grid->getName().$this->key(); return <<   {$this->value} EOT; } }