Skip to content
Advertisement

How can I create a profile for a user through a form in my application? I am using laravel 8

Hey guys I’m new to Laravel.

I have one user in my database with name, username and password, now I want to create a profile for this user through a form in my application, where the user can submit a profile image, description and url. I also would like the user to be able to edit and submit changes after. How can I do that?

My routes in web.php are:

JavaScript

My form in edit.blade.php file is as follow:

JavaScript

And finally, my methods in UserController are:

JavaScript

To also give better context, the profile description, url and image columns are not in my User Model, but rather in my Profile Model. I have defined those relationships, so to allow for better understanding here’s the code for the following files:

This is the code in my User.php file:

JavaScript

This is the Users Table file:

JavaScript

This is the Profile.php file:

JavaScript

And this is the Profiles Table file:

JavaScript

Advertisement

Answer

Updates

The save method may also be used to update models that already exist in the database. To update a model, you should retrieve it and set any attributes you wish to update. Then, you should call the model’s save method.

JavaScript

Assumed routes.

JavaScript

Edit your <form> action attribute to:

JavaScript

I hope you have this route /users/{$user} defined in your routes/web.php file.

Add a $fillable member variable to AppModelsProfile model.i.e:

JavaScript

Not really related to the question, but you may also want to add a foreign key constraint to the CreateProfilesTable migration. i.e:

JavaScript

Since it’s a one-to-one relationship, it also makes sense to add a unique key constraint on user_id column in ‘profiles table ‘(CreateProfilesTable migration). i.e:

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