I have a table in my db where some columns are nullable and of course have null as default value.
In my controller, I use Model::create($request->all()) to save. While it saves the data, the nullable columns were not populated with any value, still null.
Perhaps, does making it ->nullable() in migration the issue?
If not, can someone explain why the nullable columns were not populated with their corresponding values? and how do I address the problem?