IndomieRendang
Get updated row selection on modal open
I've opened since september but was tagged as low priority, but considering the case above, I think this is important.
For this moment, I expect someone could help me to solve this problem using browser events or anything if possible.
3 replies
Making slug from 2 input
Let's back to your original code above... If we want to combine both fields, then we need to get both values...
so
$set('slug', Str::slug($state . ' ' . $get('last_name'));
for name
and $set('slug', Str::slug($get('name') . ' ' . $state);
for last_name17 replies
Can I defer-loading a table column/cell?
The api is strong enough to serve massive requests, but each may need few seconds for the response as it needs to fetch from connected device. So yeah it can be considered as throttling but it is the nature of that api. Outside the filament, I can make pool request to grab them concurrently, but not sure with livewire or filament table.
Is it possible to merge the responses with the eloquent data before reaching the table? I couldn't find similar way like form->fill() or mutateDataXXX for filament table
8 replies