Is it possible to retrieve model data from the parent controller within a child controller?
<div ng-controller="abc">
<div ng-controller="def">
<span> {{name}}</span>
</div>
</div>
Can we access the value of "model" if it belongs in the "abc" controller?