Daniel Reales
No refresh component
With the new version of livewire 3 you don't need it.
https://livewire.laravel.com/docs/events#listening-for-events
6 replies
Select default relationship
But If I change between tenants always keep the first Tenant default:
Select::make('stores')
->multiple()
->relationship('stores', 'name')
->searchable()
->preload()
->default([Filament::getTenant()->id])
->options(auth()->user()->stores()->pluck('name', 'id'))
->label('Tiendas'),
8 replies