Skip to content

Releases: hotwired-laravel/turbo-laravel

0.0.5

19 Jan 04:27

Choose a tag to compare

Added

  • Adds the Turbo Alpine Bridge when using Jetstream #6

Changed

  • Made Stimulus option by passing the --stimulus flag to the turbo:install command, 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

17 Jan 02:45

Choose a tag to compare

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_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)

0.0.3

17 Jan 02:43

Choose a tag to compare

Added

  • Adds a namespaced dom_id function that can be used outside of Blade views.

0.0.2

15 Jan 17:03

Choose a tag to compare

Fixed

  • Fixes the @domid generation for new model instances (8726d37)