Laravel faker 中文化
2017-11-29 本文已影响10人
初秋夏末
AppServiceProvider::class 中添加#
public function boot()
{
$this->app->singleton(\Faker\Generator::class, function () {
return \Faker\Factory::create('zh_CN');
});
}