Select field not showing new created record using modal

When I create a new record using the create modal of a select field with this code I get this error Undefined property: stdClass::$:

)->createOptionUsing(function ($data) {
                                    $newProducer = new Producer();
                                    $newProducer->fill($data);
                                    $newProducer->user_id = Auth::id();
                                    $newProducer->save();
                                    return $newProducer->id;
Was this page helpful?