Skip to content

Instantly share code, notes, and snippets.

@earth774
Created April 28, 2019 08:11
Show Gist options
  • Save earth774/93b8897175f99efb85a14be2f6f74aaf to your computer and use it in GitHub Desktop.
Save earth774/93b8897175f99efb85a14be2f6f74aaf to your computer and use it in GitHub Desktop.
Create fake data user
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
// $this->call('UsersTableSeeder');
factory(App\Users::class, 10)->create();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment