public function run()
 {
     if (App::environment() === 'production') {
         exit('Seed should be run only in development/debug environment.');
     }
     DB::statement('SET FOREIGN_KEY_CHECKS=0');
     DB::table('users')->truncate();
     $user = User::create(['organization_id' => 1, 'email' => '*****@*****.**', 'password' => 'password', 'firstname' => 'Root', 'lastname' => 'User', 'active' => 1]);
     $user = User::create(['organization_id' => 2, 'email' => '*****@*****.**', 'password' => 'password', 'firstname' => 'Admin', 'lastname' => 'User', 'active' => 1]);
     $user = User::create(['organization_id' => 2, 'email' => '*****@*****.**', 'password' => 'password', 'firstname' => 'Moderator1', 'lastname' => 'User', 'active' => 1]);
     $user = User::create(['organization_id' => 3, 'email' => '*****@*****.**', 'password' => 'password', 'firstname' => 'Moderator2', 'lastname' => 'User', 'active' => 1]);
     $user = User::create(['organization_id' => 4, 'email' => '*****@*****.**', 'password' => 'password', 'firstname' => 'Moderator3', 'lastname' => 'User', 'active' => 1]);
     DB::statement('SET FOREIGN_KEY_CHECKS=1');
 }