I am trying to show a list using ng-repeat but I couldn't figure out how to group it. This is my json:
 {
  "id": "1",
  "name": "Andre Nascimento",
  "client": "Lojas Mais"
},
{
  "id": "1",
  "name": "Andre Nascimento",
  "client": "Fe comercio"
},
{
  "id": "1",
  "name": "Andre Nascimento",
  "client": "Transtour"
},
{
  "id": "2",
  "name": "Carla Prata",
  "client": "Fe comercio"
},
{
  "id": "2",
  "name": "Carla Prata",
  "client": "Transtour"
}
I would like to getthe follow result
Andre Nascimento 
  *Lojas Mais
  *Fe comercio
  *Transtour
Carla Prata
  *Fe comercio
  *Transtour
 
     
    