Documentation > Publishing Assets
You can publish the package assets to customize views and command stub files to your liking.
Publish the package config file:
php artisan vendor:publish --tag=ux:configThe config file can now be found in config/ux.php.
Publish the package views:
php artisan vendor:publish --tag=ux:viewsThe views can now be found in resources/views/vendor/ux.
Publish the package command stubs:
php artisan vendor:publish --tag=ux:stubsUpdate the stub_path in config/ux.php to:
'stub_path' => resource_path('stubs/vendor/ux'),The command stubs can now be found in resources/stubs/vendor/ux.
Available dummy string replacements:
DummyComponentNamespace: Livewire component namespaceDummyFactoryClass: Factory class nameDummyFactoryNamespace: Factory class namespaceDummyModelClass: Model class nameDummyModelNamespace: Model class namespacedummyModelVariables: plural model variable namedummyModelVariable: singular model variable nameDummy Model Titles: plural model title stringDummy Model Title: singular model title stringdummy_model_table: model table namedummy.prefix: Livewire route & Blade view prefixdummy-route-uri: full page Livewire component route URI
Publish all package assets at once:
php artisan vendor:publish --tag=ux