Daniel Reales
resize textarea with wire:stream
I've been trying it out but the textarea starts to increase almost at the end of the viewport.
When it starts to increase the height gets lost at the end and can't be seen. Maybe I should scroll the page instead of the textarea... I have to try.
14 replies
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