Exemple #1
0
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     \App\Project::truncate();
     \App\Company::truncate();
     \App\User::truncate();
     Model::unguard();
     $this->call(ProjectsTableSeeder::class);
     $this->call(CompaniesTableSeeder::class);
     $this->call(UsersTableSeeder::class);
     Model::reguard();
 }