Releases: titonova/x-livewire
Releases · titonova/x-livewire
Updated composer.json to Laravel 11
1.2.1 Update composer.json for Laravel 11
v1.2.0-beta
Security update.
1.1.12-beta
Updated composer.json to Livewire v3
1.1.1-beta
very tiny change
1.1.0-beta
Added the ability to add custom, named slots to <x-livewire>
components, just like normal blade components.
For example:
<x-livewire _="alert" title="Warning">
My alert message
<x-slot name="footer">My custom footer </x-slot>
</x-livewire>
....
<div class="alert ...">
{{ $slot }}
<div class="alert-footer">
{{ $footer ?? 'Default footer content' }}
</div>
</div>
1.0.1-beta
Added warning of lack of production readiness
Version 1
First release. Haven't added tests yet.