laravel 中文环境 配置

appservice boot

        CarbonCarbon::setlocale('zh');
        $this->app->singleton(FakerGenerator::class, function () {
            return FakerFactory::create('zh_CN');
        });
        Validator::extend('phone', function($attribute, $value, $parameters, $validator) {
                              return preg_match('/^1[34578][0-9]{9}$/', $value);
                          });
原文地址:https://www.cnblogs.com/fenle/p/6738987.html