Skip to content

Instantly share code, notes, and snippets.

@subdesign
Created February 16, 2014 13:36
Show Gist options
  • Save subdesign/9034322 to your computer and use it in GitHub Desktop.
Save subdesign/9034322 to your computer and use it in GitHub Desktop.
Faker 3
<?php
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
// ne alkalmazza a Mass Assignment védelmet
Eloquent::unguard();
$this->call('ArticlesTableSeeder');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment