+
{{ user.data.attributes.name }}
{{ user.data.attributes.email }}
diff --git a/resources/js/i18n/lang/en.json b/resources/js/i18n/lang/en.json
index 8d6faa3d..ceb86284 100644
--- a/resources/js/i18n/lang/en.json
+++ b/resources/js/i18n/lang/en.json
@@ -123,7 +123,7 @@
},
"storage": {
"sec_capacity": "Storage Capacity",
- "sec_details": "Capacity Used Details",
+ "sec_details": "Capacity Usage Details",
"total_used": "Total used {used}",
"total_capacity": "Your storage capacity {capacity}",
"images": "Images",
diff --git a/resources/js/router.js b/resources/js/router.js
index 8db973cf..5d8951d8 100644
--- a/resources/js/router.js
+++ b/resources/js/router.js
@@ -29,12 +29,6 @@ import AdminMobileMenu from './views/Mobile/AdminMobileMenu'
import Admin from './views/Admin'
import Invoices from './views/Admin/Invoices'
-// Payment Methods
-import Gateways from './views/Admin/Gateways'
-import Gateway from './views/Admin/Gateways/Gateway'
-import GatewaySettings from './views/Admin/Gateways/GatewayTabs/GatewaySettings'
-import GatewayTransactions from './views/Admin/Gateways/GatewayTabs/GatewayTransactions'
-
// Plans
import Plans from './views/Admin/Plans'
import Plan from './views/Admin/Plans/Plan'
@@ -79,17 +73,6 @@ const routesAdmin = [
title: 'Admin'
},
children: [
-
- // List Pages
- {
- name: 'Gateways',
- path: '/admin/payment-methods',
- component: Gateways,
- meta: {
- requiresAuth: true,
- title: 'Payment Methods'
- },
- },
{
name: 'Invoices',
path: '/admin/invoices',
@@ -204,35 +187,6 @@ const routesAdmin = [
},
]
},
- {
- name: 'Gateway',
- path: '/admin/payment-method/:slug',
- component: Gateway,
- meta: {
- requiresAuth: true,
- title: 'Payment Method'
- },
- children: [
- {
- name: 'GatewayTransactions',
- path: '/admin/payment-methods/:slug/transactions',
- component: GatewayTransactions,
- meta: {
- requiresAuth: true,
- title: 'Transactions'
- },
- },
- {
- name: 'GatewaySettings',
- path: '/admin/payment-methods/:slug/settings',
- component: GatewaySettings,
- meta: {
- requiresAuth: true,
- title: 'Settings',
- },
- },
- ]
- },
{
name: 'Plan',
path: '/admin/plan/:id',
diff --git a/resources/js/views/Admin.vue b/resources/js/views/Admin.vue
index 0a8d63e6..682dfe65 100644
--- a/resources/js/views/Admin.vue
+++ b/resources/js/views/Admin.vue
@@ -3,36 +3,6 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/resources/js/views/Admin/Gateways/Gateway.vue b/resources/js/views/Admin/Gateways/Gateway.vue
deleted file mode 100644
index 1e0119e8..00000000
--- a/resources/js/views/Admin/Gateways/Gateway.vue
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
![]()
-
-
- {{ gateway.attributes.name }}
- Payment Gateway
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/resources/js/views/Admin/Gateways/GatewayTabs/GatewaySettings.vue b/resources/js/views/Admin/Gateways/GatewayTabs/GatewaySettings.vue
deleted file mode 100644
index 4f75f75e..00000000
--- a/resources/js/views/Admin/Gateways/GatewayTabs/GatewaySettings.vue
+++ /dev/null
@@ -1,173 +0,0 @@
-
-
-
-
-
-
-
-
-
- PayPal Secrets
-
-
-
-
-
-
- {{ errors[0] }}
-
-
-
-
-
-
-
-
- {{ errors[0] }}
-
-
-
-
-
-
-
-
- {{ errors[0] }}
-
-
-
-
-
-
-
-
-
-
-
- Stripe Secret
-
-
-
-
-
-
- {{ errors[0] }}
-
-
-
-
-
-
-
-
- {{ errors[0] }}
-
-
-
-
-
-
-
-
-
-
diff --git a/resources/js/views/Admin/Gateways/GatewayTabs/GatewayTransactions.vue b/resources/js/views/Admin/Gateways/GatewayTabs/GatewayTransactions.vue
deleted file mode 100644
index a1985a8f..00000000
--- a/resources/js/views/Admin/Gateways/GatewayTabs/GatewayTransactions.vue
+++ /dev/null
@@ -1,136 +0,0 @@
-
-
-
-
-
-
- |
-
- {{ row.data.attributes.order }}
-
- |
-
-
- ${{ row.data.attributes.total }}
-
- |
-
-
- {{ row.data.attributes.bag[0].description }}
-
- |
-
-
- {{ row.data.attributes.created_at_formatted }}
-
- |
-
-
-
-
- |
-
-
- |
-
-
-
-
-
- You don't have any transactions yet.
-
-
-
-
-
-
-
diff --git a/resources/js/views/Admin/Plans/PlanCreate.vue b/resources/js/views/Admin/Plans/PlanCreate.vue
index cc09e545..bcb0f866 100644
--- a/resources/js/views/Admin/Plans/PlanCreate.vue
+++ b/resources/js/views/Admin/Plans/PlanCreate.vue
@@ -2,15 +2,13 @@