implemented subscription page

This commit is contained in:
Čarodej
2021-11-25 10:11:50 +01:00
parent 03ddb61d33
commit 3bfca2ac83
14 changed files with 236 additions and 23 deletions

View File

@@ -54,7 +54,7 @@
}
},
created() {
axios.get('/api/subscription/plans/' + this.$route.params.id)
axios.get('/api/subscriptions/plans/' + this.$route.params.id)
.then(response => {
this.plan = response.data.data
})