Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Last active September 8, 2020 12:31
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 cursosdesarrolloweb/b3d6a5aea593b583f15dff5b6b6449a4 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/b3d6a5aea593b583f15dff5b6b6449a4 to your computer and use it in GitHub Desktop.
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
User::factory(10)->create();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment