InputArray
Features

InputArray::make('Utterances', 'utter')
->type('text') //any html5 type except 'search' and 'range'
->minItems(2) //Minimum items allowed
->maxItems(4) //Max items allowed
->placeholder('Utter something')
//->deferEntangle(false) //uncomment to validate on every keystroke!! (NOT recommended)
->rules('required|string'); //the rules apply to each input fieldMethods
->type(string $type)
->placeholder(string $type)
->showEmptyItem($count = 1)
->deferEntangle(bool $state = true)
->minItems(int $min = 1)
->maxItems(int $max = 0)
Last updated
Was this helpful?