Open kanishka55 opened 1 year ago
@open-admin-org please consider this
@open-admin-org please check this.
I have the same issue.
For now I fixed it by using a select with values from a folder in storage
. Maybe this works for your project too.
..., function (Form $form) {
$files = collect(Storage::disk('public')->files('flags'));
$options = [];
foreach ($files as $file) {
$options[$file] = basename($file);
}
$form->table('locations', __('admin.locations'), function ($table) use ($options) {
$table->select('flag', __('admin.flag'))->options($options);
$table->text('description', __('admin.description'));
$table->text('value', __('admin.value'));
});
});
In combi with the Media manager extension this worked for my users.
i will check this in my project. thank you @bytebrain
now fixed in dev-branch
@kanishka55 I took a look at your example. It uses:
$form->table()
This it not working properly with relations. This is for the use with JSON fields. (Field now has an extra check for this)
$form->hasMay(...)->mode("table");
Describe the bug I have one-to-many relationship tables. I want to store all my data in one form. Therefore, I created a nested form in parent controller. I have a number of images, which each image has caption text. In adding a new record, it inserts all inputs with image paths to the table fields. it means it saves all image paths in the database.
But the problem is when I go to edit action. After I submitted the edit form the image path(column name : image_url) value of child table goes to null.
Expected behavior how i work hasmany relation in form to handle image upload in both new record and update/edit record.
System