Skip to content
Advertisement

How can I insert data in two tables at the same time during user registration in Laravel 7?

I have a registration form that will be used to register new users. My users are called “Clients” so I have two tables in mysql database (“clients” table and “users” table). I’m using Laravel 7. I would like to insert Clients data (first name, last name, email e.t.c) to both database tables at the same time during registration. I have created two Models which have a one-to-one relationship. I have also created a controller to register the Clients but at the moment the data is being inserted in one table (clients table). Please help me insert data in the two tables at the same time. Thanks.

RegisterController:

JavaScript

Relationship in my User Model

JavaScript

Relationship in my Client Model

JavaScript

Advertisement

Answer

If you want insert in other table and data it´s the same, maybe you can to do something like:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement