outl1ne / nova-simple-repeatable

A Laravel Nova simple repeatable rows field.
MIT License
73 stars 42 forks source link

File field is not working #6

Open m-a-k-o opened 3 years ago

m-a-k-o commented 3 years ago

When I try to save File, file is not saved.

            SimpleRepeatable::make('Súbory na stiahnutie', 'downloads', [
                Text::make('Názov', 'name')
                    ->rules(['required']),
                File::make('Súbor', 'file'),
            ]),
[{"file": [], "name": "Test"}]
Tarpsvo commented 3 years ago

Hi! Supporting the File field is not an easy task due to the way Nova has implemented it and we're not currently planning on it. However, you're welcome to submit a PR to add support for it!

m-a-k-o commented 3 years ago

@Tarpsvo Thank you for fast reply!