for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenNoten\LaravelAdminLte\Components;
use Illuminate\View\Component;
class Textarea extends Component
{
public $id;
public $name;
public $label;
public $placeholder;
public $topclass;
public $inputclass;
public $disabled;
public $required;
public $rows;
public function __construct(
$id = null, $name = null,
$label = 'Input Label', $placeholder = null,
$topclass = null, $inputclass = null,
$disabled = false, $required = false,
$rows = '10'
) {
$this->id = $id;
$this->name = $name;
$this->label = $label;
$this->placeholder = $placeholder;
$this->topclass = $topclass;
$this->inputclass = $inputclass;
$this->required = $required;
$this->disabled = $disabled;
$this->rows = $rows;
}
public function render()
return view('adminlte::textarea');