first(); if ($existingSuperAdmin) { // Update existing super admin $existingSuperAdmin->update([ 'name' => 'Super Admin', 'password' => Hash::make('password'), 'role' => 'super_admin', ]); $this->command->info('OK: Super Admin updated successfully.'); } else { // Create new super admin User::create([ 'name' => 'Super Admin', 'email' => 'superadmin@gmail.com', 'password' => Hash::make('password'), 'role' => 'super_admin', 'email_verified_at' => now(), ]); $this->command->info('OK: Super Admin created successfully.'); } $this->command->info('Email: superadmin@gmail.com'); $this->command->info('Password: password'); $this->command->line(''); // Also create a regular admin for testing $existingAdmin = User::where('email', 'admin@gmail.com')->first(); if (!$existingAdmin) { User::create([ 'name' => 'Admin', 'email' => 'admin@gmail.com', 'password' => Hash::make('password'), 'role' => 'admin', 'email_verified_at' => now(), ]); $this->command->info('OK: Regular Admin created successfully.'); $this->command->info('Email: admin@gmail.com'); $this->command->info('Password: password'); } } }