Answers for "laravel float or double"

PHP
1

laravel validation types for float

//For float, must use numeric validator

/**
  * Get the validation rules that apply to the request.
  *
  * @return array
 */
public function rules()
{
  return [
    'field' => 'numeric'
  ];
}
Posted by: Guest on January-14-2021
3

php float value

floatval ($var)
Posted by: Guest on June-19-2019

Browse Popular Code Answers by Language