美文网首页laravel自学
Laravel faker 中文化

Laravel faker 中文化

作者: 初秋夏末 | 来源:发表于2017-11-29 17:21 被阅读10次

    AppServiceProvider::class 中添加#

        public function boot()
        {
            $this->app->singleton(\Faker\Generator::class, function () {
                return \Faker\Factory::create('zh_CN');
            });
        }
    

    相关文章

      网友评论

        本文标题:Laravel faker 中文化

        本文链接:https://www.haomeiwen.com/subject/kfrpbxtx.html