Skip to content

Instantly share code, notes, and snippets.

@andreferraro
Last active August 29, 2015 14:25
Show Gist options
  • Save andreferraro/00b13509f7840d5562fe to your computer and use it in GitHub Desktop.
Save andreferraro/00b13509f7840d5562fe to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Database\Seeder;
class UserTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory(App\User::class)->create([
'name' => 'Jonh',
'email' => '[email protected]',
'role' => 'admin',
'password' => bcrypt('123mudar')
]);
factory(App\User::class, 9)->create();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment