App\services\OptionFormTextarea::render PHP Method

render() public method

public render ( )
    public function render()
    {
        if (is_null($this->value)) {
            $this->value = option($this->id);
        }
        return view('vendor.option-form.textarea')->with(['rows' => $this->rows, 'id' => $this->id, 'value' => $this->value, 'description' => $this->description]);
    }