Skip to content
Discussion options

You must be logged in to vote

I found the mistake I made. In my Component, I initially used:

  public ?string $submitterSearch  = '';
  public ?string $projectSearch  = '';

So it wasn't null so the update was send. Changing it to:

  public ?string $submitterSearch  = null;
  public ?string $projectSearch  = null;

Solved the issue. Of course I find the solution hours after I posted here, when I didn't find it in the last 3 days constantly working on it. Forgive me, I am new to Laravel and Livewire.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@joshhanley
Comment options

Answer selected by BrinkmoellerMartin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Bugs
Labels
None yet
2 participants