Kirby and Database CRUD

Is it possible to update or insert Database records with the panel?

For instance: I create a structure field for a Page and fill it with records, as soon as it gets updated by a User in the panel I need to access those changes to write the Database code.

Should I use a Hook for this?

Yes, if you want to write the contents created through the Panel in a database, you can do this via a panel.page.update hook.

Thank you! :+1: I’ll go that way then.