public function run()
 {
     $faker = Faker::create();
     foreach (range(1, 4) as $index) {
         Departement::create(['organization_id' => 1, 'name' => $faker->domainName]);
     }
 }