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 InputTag extends Component
{
public $id;
public $name;
public $label;
public $max;
public $topclass;
public $inputclass;
public $disabled;
public $required;
public function __construct(
$id = null, $name = null,
$label = 'Input Label',
$topclass = null, $inputclass = null,
$disabled = false, $required = false, $max = 10
) {
$this->id = $id;
$this->name = $name;
$this->label = $label;
$this->topclass = $topclass;
$this->inputclass = $inputclass;
$this->required = $required;
$this->disabled = $disabled;
$this->max = $max;
}
public function render()
return view('adminlte::components.input-tag');