Seeing as you put me on the right course to fix my issue I had, below is my directive and the html
angular.module('portal.directives', [])
.directive('bootCarousel', function(){
return function(scope, elem, attrs) {
scope.carouselPrev = function(){
$('#'+attrs.id).carousel('prev');
}
scope.carouselNext = function(){
$('#'+attrs.id).carousel('next');
}
}
});
Html: