Answers for "laravel float laravel"

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
0

laravel enum float

$table->float('amount', 8, 2);
Posted by: Guest on April-29-2021

Browse Popular Code Answers by Language