Daniel Reales
Daniel Reales
FFilament
Created by Daniel Reales on 2/18/2024 in #❓┊help
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
FFilament
Created by Daniel Reales on 2/18/2024 in #❓┊help
No refresh component
I used that: #[On('updateTicket')] above the function. I hope it helps you
6 replies
FFilament
Created by Daniel Reales on 5/19/2024 in #❓┊help
Listening for broadcast events multi-tenancy
This is my Listener in the component Livewire:
public function getListeners(): array
{
return [
'echo-private:'.'stores.'.Filament::getTenant()->id.',RefreshAppointmentsEvent' => 'refreshData',
];
}
public function getListeners(): array
{
return [
'echo-private:'.'stores.'.Filament::getTenant()->id.',RefreshAppointmentsEvent' => 'refreshData',
];
}
3 replies
FFilament
Created by Daniel Reales on 4/10/2024 in #❓┊help
Select default relationship
Now that I think about it, it could even stay that way. jeje
8 replies
FFilament
Created by Daniel Reales on 4/10/2024 in #❓┊help
Select default relationship
Exactly, now all queries are saved in session even if the Tenant changes
8 replies
FFilament
Created by Daniel Reales on 4/10/2024 in #❓┊help
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
FFilament
Created by Daniel Reales on 4/10/2024 in #❓┊help
Select default relationship
thank you so much! It's works now
8 replies
FFilament
Created by headbanger on 2/9/2024 in #❓┊help
listener not working via echo
Could you resolve it?
3 replies
FFilament
Created by HL on 11/29/2023 in #❓┊help
InteractsWithPageFilters doesn't refresh the Widget on filter change
The same thing happens to me with ChartWidget
11 replies
FFilament
Created by Daniel Reales on 12/1/2023 in #❓┊help
HasFiltersForms not found
So much focus on important things that in the end you lose yourself😝
7 replies
FFilament
Created by Daniel Reales on 12/1/2023 in #❓┊help
HasFiltersForms not found
I just realized it wasn't in 3.1! 😪
7 replies
FFilament
Created by Daniel Reales on 11/29/2023 in #❓┊help
Datepicker without time
It's deprecated 🥲
4 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
It's exactly what I was looking for! Thank you so much!!
21 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
It's possible to send Filament::getResetPasswordUrl($token, $user); to an specific panel? I'm creating new users from admin panel but I want to send an email to users with client panel link
21 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
thank you for your help!
21 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
I could do this beforeCreate hooks?
21 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
Ah ok thank you sorry
21 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
Can this field be sent even if it has the 'hidden' value?
21 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
I did: TextInput::make('password')->required()->password()->default(Hash::make(Str::random(13)))->hidden(), But I receive the same error
21 replies
FFilament
Created by Daniel Reales on 9/14/2023 in #❓┊help
Send email after register user
I know, but for this case I need to set ->nullable() on migration or existe another case use?
21 replies