Remove Sendpayment form
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Philipp Lang 2023-12-19 02:45:09 +01:00
parent 5d5b08ed78
commit 3a3b20ed72
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
<template>
<page-layout>
<div class="grid grid-cols-2">
<div class="p-6" v-for="(type, index) in types" :key="index">
<p class="text-white" v-for="(paragraph, index) in type.text" :key="index" v-text="paragraph"></p>
<a :href="type.link.href" target="_BLANK" class="btn btn-primary mt-3 inline-block" v-text="type.link.label"></a>
</div>
</div>
</page-layout>
</template>
<script>
export default {
data: function () {
return {
inner: {},
};
},
props: {
types: {},
},
methods: {
submit() {
this.$inertia.post(`/allpayment`, this.inner);
},
},
};
</script>