Laravel faker 中文化

AppServiceProvider::class 中添加#

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

你可能感兴趣的:(Laravel faker 中文化)