How to dispatch filament form data using blade $dispatch method
When I am trying to
This is not send updated data:
However this is sending correct data:
Please let me know if there is a way to send updated form data from blade file itself to avoid server roundtrip.
$dispatch an event to send filament form data, it is not sending updated form data. However If use dispatch inside livewire component I am able to get updated data. But by calling dispatch in livewire component will result in server call. I am trying to avoid server call. This is not send updated data:
However this is sending correct data:
Please let me know if there is a way to send updated form data from blade file itself to avoid server roundtrip.