Skip to content

Instantly share code, notes, and snippets.

@Thivieira
Forked from flyingluscas/UsingFakerInPT-BR.md
Created August 27, 2018 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Thivieira/663513a22f978a2bb1d0c079cdf9636b to your computer and use it in GitHub Desktop.
Save Thivieira/663513a22f978a2bb1d0c079cdf9636b 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