<!DOCTYPE html>
<html ng-app="plunker">

<head>
  <meta charset="utf-8" />
  <title>AngularJS Plunker</title>
  <script>
    document.write('<base href="' + document.location + '" />');
  </script>
  <script data-require="angular.js@1.3.x" src="https://code.angularjs.org/1.3.11/angular.js" data-semver="1.3.11"></script>
  <script src="script.js"></script>
</head>

<body ng-controller="MainCtrl">


  ---------------------
  <div class="form-check" ng-repeat="set_manu_name in get_manu_name">
    <label class="form-check-label">
      <input type="checkbox" class="form-check-input" value="{{set_manu_name}}"/>{{set_manu_name.mobile_manu_name}}
    </label>
  </div>
  ---------------------
  <div class="form-check" ng-repeat="set_ram in get_ram">
    <label class="form-check-label">
       <input type="checkbox" class="form-check-input" value="{{set_ram}}"/>{{set_ram.ram}}
    </label>
  </div>
  <br/>
    ---------------------
  <div class="form-check" ng-repeat="set_price in get_price">
    <label class="form-check-label">
      <input type="checkbox" class="form-check-input" value="{{set_price}}"/>{{set_price.mobile_price}}
    </label>
  </div>
  ---------------------
  <div ng-repeat="set_product_details in get_product_details">
    <p>{{set_product_details.product_list_name}}</p>
    <p>{{set_product_details.product_list_price}}</p>
    <p>{{set_product_details.product_list_ram}}</p>
    <p>{{set_product_details.product_list_manufacture_name}}</p>
    /*/*/*/*/*/*/*/*/*/*/*/*/*/
  </div>
  
 
  <!-- single loop srts -->
</body>

</html>
var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope , $http) {
  
  // mobile price details
 $http.get('https://api.myjson.com/bins/3el1e').then(function(res) {
    $scope.get_price = res.data;
   
});

// mobile ram details

$http.get('https://api.myjson.com/bins/qcj6').then(function(res) {
    $scope.get_ram = res.data;
});

// mobile manufacture details
$http.get('https://api.myjson.com/bins/52t8y').then(function(res) {
    $scope.get_manu_name = res.data;
});

// product details
$http.get('https://api.myjson.com/bins/42diq').then(function(res) {
    $scope.get_product_details = res.data;
});

});