[Vuejs]-"Trying to get property 'type' of non-object" when try to edit admin

0👍

The problem is in the user_belongsto_role_relationship record in the data_rows table.
you can refer to this issue:
https://github.com/the-control-group/voyager/issues/3871

0👍

Actually, I posted an answer in https://github.com/the-control-group/voyager/issues/3871, but re-post here for other users.

Wrong Document:
{"model":"TCG\\Voyager\\Models\\Role","table":"roles","type":"belongsToMany","column":"id","key":"id","label":"name","pivot_table":"user_roles","pivot":"1"}

My Solution:
{"model":"TCG\\\\Voyager\\\\Models\\\\Role","table":"roles","type":"belongsToMany","column":"id","key":"id","label":"name","pivot_table":"user_roles","pivot":"1"}

Hope it help!

Leave a comment