[Vuejs]-Call to undefined method Person::id()

1👍

There’s no method $person->id(); in Person Instanse. You need do get a property like this: $person->id. Hope it helps.
You’re error in this code line: $name = $person->id();

Leave a comment