*/ protected function moneyRules(bool $bigInt = false): array { $rules = [ 'integer', 'min:0', ]; if ($bigInt) { $rules[] = 'max:9223372036854775807'; } else { $rules[] = 'max:2147483647'; } return $rules; } }