Encore\Admin\Form\Field\Display::render PHP Method

render() public method

public render ( )
    public function render()
    {
        if ($this->callback instanceof Closure) {
            $this->value = call_user_func($this->callback, $this->value);
        }
        return parent::render();
    }