diff --git a/resources/assets/vue/app.js b/resources/assets/vue/app.js
index abb7a17e..39e22279 100644
--- a/resources/assets/vue/app.js
+++ b/resources/assets/vue/app.js
@@ -34,6 +34,13 @@ Vue.use(VueTheMask);
Vue.use(filters);
Vue.directive('closable', closable);
+Vue.directive('tooltip', function(el, binding){
+ $(el).tooltip({
+ title: binding.value,
+ placement: binding.arg,
+ trigger: 'hover'
+ })
+})
Vue.mixin({
methods: {
route: route
diff --git a/resources/assets/vue/components/bookings/elements/PaymentComponent.vue b/resources/assets/vue/components/bookings/elements/PaymentComponent.vue
index 1db46493..1f9a606f 100644
--- a/resources/assets/vue/components/bookings/elements/PaymentComponent.vue
+++ b/resources/assets/vue/components/bookings/elements/PaymentComponent.vue
@@ -13,7 +13,7 @@