diff --git a/resources/js/pages/patients/PatientQuestionProfile.vue b/resources/js/pages/patients/PatientQuestionProfile.vue
new file mode 100644
index 0000000..61f71b5
--- /dev/null
+++ b/resources/js/pages/patients/PatientQuestionProfile.vue
@@ -0,0 +1,525 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{{
+ item.label
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/resources/js/pages/patients/patient-profile.vue b/resources/js/pages/patients/patient-profile.vue
index 68cbd60..1e2e63d 100644
--- a/resources/js/pages/patients/patient-profile.vue
+++ b/resources/js/pages/patients/patient-profile.vue
@@ -2,7 +2,7 @@
import NotesPanel from '@/pages/patients/NotesPanel.vue'
import PatienTabOverview from '@/pages/patients/PatienTabOverview.vue'
import PatientBioPanel from '@/pages/patients/PatientBioPanel.vue'
-import PatientProfile from '@/pages/patients/patientprofile.vue'
+import PatientQuestionProfile from '@/pages/patients/PatientQuestionProfile.vue'
import PrescriptionPanel from '@/pages/patients/PrescriptionPanel.vue'
import { useStore } from 'vuex'
@@ -99,7 +99,7 @@ onMounted(async () => {
-
+
diff --git a/resources/js/plugins/1.router/additional-routes.js b/resources/js/plugins/1.router/additional-routes.js
index ff585ae..ed2be71 100644
--- a/resources/js/plugins/1.router/additional-routes.js
+++ b/resources/js/plugins/1.router/additional-routes.js
@@ -141,7 +141,7 @@ export const routes = [
{
path: '/admin/providers/patientprofile/:id',
name: 'admin-providers-patientprofile',
- component: () => import('@/pages/patients/patientprofile.vue'),
+ component: () => import('@/pages/patients/PatientQuestionProfile.vue'),
},
{
path: '/apps/email/filter/:filter',
diff --git a/typed-router.d.ts b/typed-router.d.ts
index 5589208..fe8e3ed 100644
--- a/typed-router.d.ts
+++ b/typed-router.d.ts
@@ -162,6 +162,7 @@ declare module 'vue-router/auto/routes' {
'patients-patien-tab-overview': RouteRecordInfo<'patients-patien-tab-overview', '/patients/PatienTabOverview', Record, Record>,
'patients-patient-bio-panel': RouteRecordInfo<'patients-patient-bio-panel', '/patients/PatientBioPanel', Record, Record>,
'patients-patientprofile': RouteRecordInfo<'patients-patientprofile', '/patients/patientprofile', Record, Record>,
+ 'patients-patient-question-profile': RouteRecordInfo<'patients-patient-question-profile', '/patients/PatientQuestionProfile', Record, Record>,
'patients-patients': RouteRecordInfo<'patients-patients', '/patients/patients', Record, Record>,
'patients-prescription-panel': RouteRecordInfo<'patients-prescription-panel', '/patients/PrescriptionPanel', Record, Record>,
'patients-question-progress-bar': RouteRecordInfo<'patients-question-progress-bar', '/patients/QuestionProgressBar', Record, Record>,