Documentation

Textarea extends Component

Textarea Laravel Blade Component

A textarea input component with customizable labels, hints, and placeholder text for enhanced user experience.

Features:

  • Customizable labels and hints
  • Form validation integration
  • Livewire real-time updates
  • Bulma CSS framework integration
  • Mobile-friendly responsive design
Tags
author

V360

version
1.0.0
since
2024-07-12
example

Table of Contents

$class  : string
$hint  : string|null
$id  : string
$label  : string|null
$name  : string
$placeholder  : string|null
$value  : string|null
__construct()  : mixed
Create a new component instance
render()  : View|string
Get the view / contents that represent the component.

Properties

$placeholder

public string|null $placeholder = null

Methods

__construct()

Create a new component instance

public __construct(string $name[, string|null $value = null ][, string|null $id = null ][, mixed $label = null ][, string|null $classes = null ][, string|null $placeholder = null ][, string|null $hint = null ]) : mixed
Parameters
$name : string
$value : string|null = null
$id : string|null = null
$label : mixed = null
$classes : string|null = null
$placeholder : string|null = null
$hint : string|null = null
Return values
mixed

render()

Get the view / contents that represent the component.

public render() : View|string
Return values
View|string

Search results