Skip to content

Instantly share code, notes, and snippets.

@naneri
Last active August 29, 2015 14:20
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 naneri/3f7c21bf737cb9458ac2 to your computer and use it in GitHub Desktop.
Save naneri/3f7c21bf737cb9458ac2 to your computer and use it in GitHub Desktop.
<?php
class UsersTableSeeder extends Seeder{
public function run(){
DB::table('users')->delete();
$faker = Faker\Factory::create();
for ($i = 0; $i < 100; $i++)
{
$users = User::create(array(
'email' => $faker->email,
'password' => Hash::make('password')
));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment