Releases: hotwired-laravel/turbo-laravel
Releases · hotwired-laravel/turbo-laravel
0.0.5
Added
- Adds the Turbo Alpine Bridge when using Jetstream #6
Changed
- Made Stimulus option by passing the
--stimulusflag to theturbo:installcommand, since we can use either that or Alpine - Made some tweaks to reuse the same asset stubs for plain and jetstream Laravel installs (with and without Stimulus too)
0.0.4
Added
- 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_namespaceconfig key. This way, we will respect nested-namespaces for models inside a sub folder (App\\Models\\Account\\Userwill generateaccount_user_idfor existing instances andcreate_account_userfor new instances, for example)
Changed
- DOM ID generation now returns
create_{$resource}instead of{$resource}_newfor new model instances (still uses the prefix)