for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Terranet\Administrator\Field;
class Number extends Generic
{
/**
* @return array
*/
public function getAttributes(): array
return parent::getAttributes() + [
'min' => 0,
'max' => null,
'step' => 1,
'style' => 'width: 150px',
];
}