Skip to content

Instantly share code, notes, and snippets.

@ubiratanlima
Forked from flyingluscas/UsingFakerInPT-BR.md
Created October 25, 2025 21:15
Show Gist options
  • Select an option

  • Save ubiratanlima/562ccc826959c55742e51eb992e0bc9d to your computer and use it in GitHub Desktop.

Select an option

Save ubiratanlima/562ccc826959c55742e51eb992e0bc9d 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