I have 02 tables in the bank (prospect and opportunity) the two tables have the prospectId. How do I display in ng-repeat. I was trying to inner join in the php query and returns this error in the angle "Error: [ngRepeat: dupes]". Someone has some examples.
/* Lista oportunidade */
$scope.listaOportunidades = [];
var carregaOportunidades = function () {
$http.get("models/readOportunidades.php")
.then(function (response) {
$scope.listaOportunidades = response.data;
});
};
carregaOportunidades();
<?php
require '../../vendor/autoload.php';
use App\controllers\DB\Conn;
$PDO = new Conn;
$query = $PDO->getConn()->prepare('SELECT * FROM tb_prospect INNER JOIN tb_oportunidade ON tb_prospect.prospectId=oportunidadeCliente');
$query->execute();
while ($row = $query->fetch()) {
$return[]= $row;
}
echo json_encode($return);