I have a select component
<div class="form-group col-md-4">
<label>Município:</label>
<select ng-model="distrito.entidade.id.municipio.id.nome" class="form-control" >
<option value="{{mun.id}}" ng-repeat="mun in municipios " >{{mun.nome}}</option>
</select>
</div>
and I want to bring the name of the municipality that is inside the municipality table this inside the entity table that is related to the district table where the component is.
PS: The information is correctly arriving from the controller.js of the screen because the debug was done.