Livewire::make() return value?
I use Livewire Component in a Filament form to select some text I need in the form.
How do I get the data back to the form?
In the ViewResponses we select the response text.
It this point I can log it.
Is there any way to ge the value from the livewire component and use it in the calling form?
Solution:Jump to solution
Looks like I can use
$this->dispatch('response-selected', response: $record->response);
along with
```#[On('response-selected')]
public function updatePostList($response)
{
$this->message_text = $response;...1 Reply
Solution
Looks like I can use
$this->dispatch('response-selected', response: $record->response);
along with