I have a from like the one below, and submitting does work. but only the last three fields of each form row is showing in the db as three new records. while I’m expecting that all 5 column are inserted. so in this case it would mean 15 new records(5 columns X 3 from rows(each containing 3 fields)).
I guess that i’m missing something. Here, but can’t figure out what.
The documentation you are pointing to is about file inputs. You cannot use “multiple” like that for text inputs.
So just to confirm - you have a row with several inputs and they have static names. Then you repeat this row with inputs multiple times and want to insert everything in the database?
The names are set like this: record[{{$index}}][date], this was given via the generator.
Each row( marked in first image with borders around each row), is being repeated. the goal is that for each column in a row (columns contain 3 input fields each), a record is created like show in the last image.