Call Table Actions without making full requests?
When calling a table Action of any kind, it seems livewire will refetch the whole page request - is there a way to prevent this?
We're aiming to open a Modal that just fetches a small amount of data but at the moment it's doing all the original page queries via
We're aiming to open a Modal that just fetches a small amount of data but at the moment it's doing all the original page queries via
/livewire/update . The initial page is quite data heavy and we're trying to minimise the amount of queries that need to run - it seems overkill to re-run those initial queries when displaying something like help text.