We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fe921d commit 0827746Copy full SHA for 0827746
src/app/Http/Controllers/Operations/UpdateOperation.php
@@ -66,6 +66,9 @@ public function edit($id)
66
// get entry ID from Request (makes sure its the last ID for nested resources)
67
$id = $this->crud->getCurrentEntryId() ?? $id;
68
// get the info for that entry
69
+
70
+ // register any Model Events defined on fields
71
+ $this->crud->registerFieldEvents();
72
73
$this->data['entry'] = $this->crud->getEntryWithLocale($id);
74
$this->crud->setOperationSetting('fields', $this->crud->getUpdateFields());
0 commit comments