yassilah / laravel-nova-nested-form

This package allows you to include your nested relationships' forms into a parent form.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nested form with HasMany relationship not working on Nova 2.9.1

wesselperik opened this issue · comments

The nested form is not working anymore on Nova 2.9.1 when I click the '+'-button; in the console it returns TypeError: Cannot read property 'key' of undefined.

image

My relationship:

public function translations() {
    return $this->hasMany('App\Translation', 'translatable_id');
}

Oops; duplicate of #91, fixed in #93