1
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 within the municipality table this within the entity table that is related to the district table where is the component.
PS: The information is coming correctly from the on-screen controller.js because it has been debugged.