© 2026 Hedgehog Software, LLC
beforeValidate()
dd()
class ManagePosts extends ManageRecords { protected function beforeValidate(): void { dd('hello'); if (isset($this->data['title']) && is_string($this->data['title'])) { $this->data['title'] = Str::squish($this->data['title']); } } }