for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Riclep\StoryblokForms\Blocks;
use Illuminate\Support\Str;
use Riclep\StoryblokForms\Input;
class LsfHidden extends Input
{
// Interface this....
protected string $type = 'input';
/**
* All the Validation rules for this Input
*
* @return mixed
*/
public function errorMessages(): mixed
return [];
}
* Returns the Input’s response after the form has been submitted and validated
* @param $input
* @return array
public function response($input): array
return [
'label' => $this->label,
label
Riclep\StoryblokForms\Blocks\LsfHidden
__get
'name' => $this->name,
name
'response' => $input,
'type' => $this->type,
];