Use Meta-aware lifecycle events for database consistency
2.0Laravel Meta provides additional events that fire only after all associated meta data has been successfully saved to the database. These events do not require the HasMetaEvents trait and follow standard Laravel event patterns (receiving one parameter: the model instance).
These are useful when you need to perform actions (like dispatching a queue job) that depend on the meta data being present in the database. Standard Laravel events like created or updated might fire before the meta data is actually persisted.
Event Names
createdWithMetasupdatedWithMetassavedWithMetas