Closed MasterZydra closed 7 months ago
Hi,
I noticed that the command php artisan vendor:publish --tag=wire-extender published the wire-extender.js to the wrong folder.
php artisan vendor:publish --tag=wire-extender
wire-extender.js
According to your documentation it should be in public/vendor/wire-elements/js, but the command publishes it in public/vendor/wire-elements.
public/vendor/wire-elements/js
public/vendor/wire-elements
Changing WireExtenderServiceProvider.php fixed it for me:
WireExtenderServiceProvider.php
// Line 29 // From: __DIR__.'/../js' => public_path('vendor/wire-elements'), // To __DIR__.'/../js' => public_path('vendor/wire-elements/js'),
Thanks! I've updated the docs instead so it can remain to be vendor/wire-elements.
vendor/wire-elements
Hi,
I noticed that the command
php artisan vendor:publish --tag=wire-extender
published thewire-extender.js
to the wrong folder.According to your documentation it should be in
public/vendor/wire-elements/js
, but the command publishes it inpublic/vendor/wire-elements
.Changing
WireExtenderServiceProvider.php
fixed it for me: