From 896f93313b50ead1f09f1c27f59ad0bcab6a4fae Mon Sep 17 00:00:00 2001 From: lizandrogd <77708265+lizandrogd@users.noreply.github.com> Date: Mon, 6 Nov 2023 22:33:47 -0500 Subject: [PATCH] update de index promo --- app/Http/Livewire/ShowIndexPromo.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Livewire/ShowIndexPromo.php b/app/Http/Livewire/ShowIndexPromo.php index 0d176d9..610866c 100644 --- a/app/Http/Livewire/ShowIndexPromo.php +++ b/app/Http/Livewire/ShowIndexPromo.php @@ -63,10 +63,10 @@ class ShowIndexPromo extends Component if (is_null($usuario_existe)) { $usuario = new User; - $usuario->name = $this->nombre_tarjetaPlan; - $usuario->email = $this->email_tarjetaPlan; + $usuario->name = $this->nombre_comprarPromo; + $usuario->email = $this->email_comprarPromo; $usuario->password = '123'; - $usuario->celular = $this->celular_tarjetaPlan; + $usuario->celular = $this->celular_comprarPromo; $usuario->save(); $usuario_id = $usuario->id;