Skip to content
Advertisement

keep getting an error while saving data into database in laravel

I am using laravel ver "laravel/framework": "5.8.*" I want to save the data into database with post request and my post data is

I have searched on this many topics but I can’t get any information on this specific topic. If anyone can, it will be very helpful to me. I saw my previous codes they this type of code in laravel but they work fine why this is not saving and getting an error.

JavaScript

In laravel route my controller is :

JavaScript

The model is

JavaScript

the error argument i am getting is

JavaScript

Advertisement

Answer

You are complicating things.

On top of your controller put: use IlluminateSupportFacadesValidator;.

Delete $userInformationSave.

Validate inputs:

JavaScript

And save the model:

JavaScript

EDIT #1 In you model, you should declare table and A_I like this:

JavaScript

I think this will do the job.

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