insert(['id' => 1, 'username' => 'administrator', 'password' => Hash::make('admin'), 'created_at' => now(), 'updated_at' => now()]); DB::table('system_users')->insert(['id' => 2, 'username' => 'admin', 'password' => Hash::make('admin'), 'created_at' => now(), 'updated_at' => now()]); } }