コード例 #1
0
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     App\User::unguard();
     App\Article::unguard();
     App\Snippet::unguard();
     App\Tag::unguard();
     $this->call('UserTableSeeder');
     $this->call('ArticleTableSeeder');
     $this->call('SnippetTableSeeder');
     $this->call('TagTableSeeder');
 }