laravel-config-writer icon indicating copy to clipboard operation
laravel-config-writer copied to clipboard

Write to array in array

Open sheriffmarley opened this issue 6 years ago • 0 comments

I need to write an array to an array. Is this possible even possible? Like e.g.

rules.php

return [
'rules' => [
       [
            'name' => 'Test rule',
            'value' => 'value1'
        ],
        [
            'name' => 'Test rule 2',
            'value' => 'value 2'
        ]
    ]
]

sheriffmarley avatar Jan 28 '19 00:01 sheriffmarley