Is it possible to insert or create a copy of data automatically from current table to other table?
Is is possible, when I create a data in tb1 it will create also a copy in tb2?
I'm trying an automation here, I'm trying to insert the data from current form to othe table upon submission.
Solution:Jump to solution
observers or
afterCreate
hook in your CreatePage
```php
protected function afterCreate(): void
{...5 Replies
what about observers?
I'll try it. thanks for recommendation
have you solved? if so, i'll stop following question
haven't try it
Solution
observers or
afterCreate
hook in your CreatePage