. * */ namespace Vvveb\System\Fields; class Textarea extends Field { protected $category = 'basic'; protected $settings = [ 'default' => [ 'label' => 'Default Value', 'instructions' => 'Default value for new post', 'type' => 'textarea', 'name' => 'default', ], ]; protected $validation = [ 'max_length' => [ 'label' => 'Max length', 'instructions' => '', 'type' => 'text', 'name' => 'number', ], ]; protected $presentation = [ 'rows' => [ 'label' => 'Rows', 'instructions' => '', 'type' => 'number', 'name' => 'rows', ], ]; }