Skip to content

Instantly share code, notes, and snippets.

View AlphaRomeoMike's full-sized avatar
🐳
Node, Laravel & Angular

Abdul Rafay Modi AlphaRomeoMike

🐳
Node, Laravel & Angular
View GitHub Profile
angular.module('phoneBookApp',[]).controller('CrudCtrl',['$scope','crudService',function($scope,crudService) {
$scope.createVM = {}
$scope.updateVM = {}
$scope.showAlert = false;
$scope.loadTableData = function(){
crudService.serviceCall("GET","","").then(function(response)
{
if(response.data.length < 1)