Created
February 16, 2014 13:36
-
-
Save subdesign/9034322 to your computer and use it in GitHub Desktop.
Faker 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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