$scope.phoneNumber = '0111111111';
var modalInstance = $uibModal.open({
template: '<div class="modal-header d-flex flex-column align-items-center justify-content-center">\
<p class="font-h3 font-weight-medium">Please contact us on {{$ctrl.phoneNumber}}</p>
</div>',
appendTo: undefined,
controllerAs: '$ctrl',
resolve: {
phone: function () {
return $scope.phoneNumber;
}
},
controller: ['$uibModalInstance', '$timeout', '$state', 'phone', function($uibModalInstance, $timeout, $state, phone){
//LOGIC GOES HERE
this.phoneNumber = phone;
}]
});