saveRelationshipsUsing on custom page form.
I have a custom page with attachment relationship like
Blade file
I don't know why the
saveRelationshipsUsing
is not trigger, is there any thing I missed out ?
Thank youSolution:Jump to solution
are you using this in your saveAction?
```php
$model = YourModel::create($this->form->getState());
$this->form->model($model)->saveRelationships();...
2 Replies
Solution
Thank you @Leandro Ferreira this solve my requirement.