Skip to content
Advertisement

Is there any helper function that assign form data into model in laravel?

I know that there is a resource functionality in laravel and as far as I know resource is something like json to model and its reverse..

So when I process form data, currently, use following custom helper method..

JavaScript

.. Is this method already exist in laravel? or something similar..?

Advertisement

Answer

There is no “standard” way in Laravel, that I am aware of, that will accomplish what you have above, where you assign a default value to an input if it is missing, and control what attributes are being set using the map.

The closest thing to what you are looking for is Mass Assignment, I believe.

There are many different methods and patterns to handle these types of requests, and your approach seems fine to me. I personally use Form Requests + DTO because the code documents itself quite well. As an example:

Controller:

JavaScript

FormRequest

JavaScript

Command DTO

JavaScript
JavaScript

That is a fairly “Laravel way” of doing things, and the code itself conveys a lot of information to anyone else (and you later :D) who needs to use it.

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