Skip to content

Instantly share code, notes, and snippets.

@locopine
Forked from flyingluscas/UsingFakerInPT-BR.md
Created July 25, 2023 17:03
Show Gist options
  • Save locopine/0f30b4b538585b7a380398a5dddd9dde to your computer and use it in GitHub Desktop.
Save locopine/0f30b4b538585b7a380398a5dddd9dde to your computer and use it in GitHub Desktop.
Utilizando Faker em pt-BR

Utilizando Faker em pt-BR

Acesse o seu arquivo app/Providers/AppServiceProvider.php, e no método register adicione o seguinte :

/**
 * Register any application services.
 *
 * @return void
 */
public function register()
{
    $this->app->singleton(\Faker\Generator::class, function () {
        return \Faker\Factory::create('pt_BR');
    });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment