%PDF- %PDF-
Direktori : /home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Fields/ |
Current File : //home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Fields/Number.php |
<?php namespace Laravel\Nova\Fields; class Number extends Text { /** * Create a new field. * * @param string $name * @param string|null $attribute * @param mixed|null $resolveCallback * @return void */ public function __construct($name, $attribute = null, $resolveCallback = null) { parent::__construct($name, $attribute, $resolveCallback); $this->withMeta(['type' => 'number']); } /** * The minimum value that can be assigned to the field. * * @param mixed $min * @return $this */ public function min($min) { return $this->withMeta(['min' => $min]); } /** * The maximum value that can be assigned to the field. * * @param mixed $max * @return $this */ public function max($max) { return $this->withMeta(['max' => $max]); } /** * The step size the field will increment and decrement by. * * @param mixed $step * @return $this */ public function step($step) { return $this->withMeta(['step' => $step]); } }