You might encounter the following issue when using Livewire in your Laravel project.
To solve this issue, you can try changing your collection to an array.
For example instead of doing something like this:
$continents = Continent::query()
->pluck('name', 'id');
change it to:
$continents = Continent::query()
->pluck('name', 'id')
->toArray();
Hope this helps.