You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DOM ID generation now strips out only the root namespaces of the model's FQCN. The root namespaces are configurable, so if anyone is using non-conventional namespaces, they should add their namespaces to the turbo-laravel.models_namespace config key. This way, we will respect nested-namespaces for models inside a sub folder (App\\Models\\Account\\User will generate account_user_id for existing instances and create_account_user for new instances, for example)
Changed
DOM ID generation now returns create_{$resource} instead of {$resource}_new for new model instances (still uses the prefix)