Episode - https://laracasts.com/series/lets-build-a-livewire-app/episodes/4
WireUI is the selected component library. Setting it up is what I was expecting: a composer require + changing Tailwind config file so it’s aware of the location of the new components and can extract the utility classes from the corresponding vendor folder.
On top of that, after publishing the configuration there are changes need in config/wireui.php
.
WireUI defines a set of Livewire components. Unfortunately some of them have the same name as the one defined in Laravel Breeze which can lead to errors. To avoid that it’s possible to change the name of WireUI components in the config:
1return [2 //...3 'modal' => Config::modal(), 4 'wui-modal' => Config::modal(), 5 //...6];
This is good to know as looking at the WireUI docs I cannot find any explicit reference to this scenario, so could take a while to figure out on your own.