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;