Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Triggered in: Backend\Widgets\Form.php
Called after the form is refreshed, should return an array of additional result parameters.
Example usage:
Event::listen('backend.form.refresh', function ((\Backend\Widgets\Form) $formWidget, (array) $result) {
$result['#my-partial-id' => $formWidget->makePartial('$/path/to/custom/backend/partial.htm')];
return $result;
});
Or
$formWidget->bindEvent('form.refresh', function ((array) $result) use ((\Backend\Widgets\Form $formWidget)) {
$result['#my-partial-id' => $formWidget->makePartial('$/path/to/custom/backend/partial.htm')];
return $result;
});
Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Published May 2, 2022
v1.2 with Laravel 9 Support Now Available For Testing!
Released February 15, 2022
11 UX/UI Improvements, 12 API Changes, 12 Bug Fixes, 6 Security Improvements, 8 Translation Improvements, 5 Community Improvements, 1 Dependency