I have a function that calls the element 'categories' of the BD. This 'Categories' table has a field called 'gallery' which is an array of images. I want to do a ng-repeat that shows me the images of this field. the code that I have, but that does not work, is this:
<div class="col-md-3"
ng-repeat="c in Categorias">
<div class="img">
<img ng-src="{{asset('img/galeria/[[c.galeria]')}}" alt="">
</div>
</div>