hi @ictoplossing you need to add a relation between the Adress and the dictionaryGeo table
public function dictionaryGeo() {
return $this->belongsTo(DictionaryGeo::class);
}
then when u get the relation add the nested one
Person::with('addresses.dictionaryGeo')->get();
Now inside each person address u will have the related dictionaryGeos model.