use App\Models\User; use Illuminate\Support\Facades\Hash; User::create([ 'name' => 'Emilio Ciscar', 'email' => 'eciscar@elegaenergia.es', 'password' => Hash::make('CONTRASEÑA_SEGURA_AQUÍ'), 'role' => 'user', 'email_verified_at' => now(), ]);