Essential Question: How to upload my table data so it can be correctly saved?
In my view, I have a table with 3 columns and multiple rows. The rows are populated correctly with a foreach:
When the data comes into the controller using this: $input = $request->all(); I am not getting a well-organized series of arrays and I am totally failing at getting the data saved into the DB. My data:
Array
(
    [branches] => Array
        (
            [0] => 630
            [1] => 632
            [2] => 715
        )
    [date] => Array
        (
            [0] => 06/14/2022
            [1] => 06/23/2022
            [2] => 06/29/2022
        )
    [auditiors] => Array
        (
            [0] => 3
            [1] => 5
            [2] => 4
        )
    [disbursed] => Array
        (
            [0] => 797
            [1] => 32
            [2] => 234
        )
    [sample_selected] => Array
        (
            [0] => 798
            [1] => 2324
            [2] => 1233
        )
    [days_cases] => Array
        (
            [0] => 765
            [1] => 21334
            [2] => 12
        )
    [days_branches] => Array
        (
            [0] => 32
            [1] => 123
            [2] => 1223
        )
    [total_days] => Array
        (
            [0] => 797
            [1] => 21457
            [2] => 1235
        )
)