insert([ [ 'name' => 'Super Admin', 'email' => 'superadmin@gmail.com', 'password' => Hash::make('superadmin12345'), // ubah sesuai kebutuhan 'role' => 'super-admin', 'created_at' => now(), 'updated_at' => now(), ], [ 'name' => 'Admin', 'email' => 'admin@gmail.com', 'password' => Hash::make('admin12345'), 'role' => 'admin', 'created_at' => now(), 'updated_at' => now(), ], ]); } }