As my array consists of multiple data, it was difficult to upload all of them. So I have uploaded an image of my array and objects below.
View
<draggable :list="reservation.Reservation_people" class="list-group" draggable=".item" group="a">
<div class="list-group-item item" v-for="element in reservation.Reservation_people" :key="element.name">
<p>{{element.Person.first_name}}</p> /** Prints out Person.first_name **/
/** is there a way to fetch Player_minors first_name="Sanu" as a separate entity
under element.Person.first_name. So that it can drag Person.first_name and
Player_minors.first_name separately; **/
</div>
</draggable>
Is there a way to fetch Player_minors first_name="Sanu" as a separate entity under element.Person.first_name. So that it can drag Person.first_name and Player_minors.first_name separately?
Using element.Person.first_name prints out San. But if I use {{element.Person.Player.Player_minors.first_name}} it does not print out anything.
