generated.php 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. // --- pro: leads --- //
  4. Route::prefix('/leads')->group(function () {
  5. Route::get('', 'leads_Controller@index')->name('leads-index');
  6. });
  7. // --- pro: clients --- //
  8. Route::prefix('/clients')->group(function () {
  9. Route::get('', 'clients_Controller@index')->name('clients-index');
  10. Route::get('add_new', 'clients_Controller@add_new')->name('clients-add_new');
  11. Route::get('view/{uid}', 'clients_Controller@view')->name('clients-view');
  12. });
  13. // --- pro: clients_SINGLE --- //
  14. Route::prefix('/clients/view/{uid}')->group(function () {
  15. Route::get('ACTION_sendCellNumberConfirmationMessage', 'clients_SINGLE_Controller@ACTION_sendCellNumberConfirmationMessage')->name('clients_SINGLE-ACTION_sendCellNumberConfirmationMessage');
  16. Route::get('ACTION_confirmCellNumberWithConfirmationToken', 'clients_SINGLE_Controller@ACTION_confirmCellNumberWithConfirmationToken')->name('clients_SINGLE-ACTION_confirmCellNumberWithConfirmationToken');
  17. Route::get('ACTION_putNewCellNumber', 'clients_SINGLE_Controller@ACTION_putNewCellNumber')->name('clients_SINGLE-ACTION_putNewCellNumber');
  18. Route::get('ACTION_putNewEmailAddress', 'clients_SINGLE_Controller@ACTION_putNewEmailAddress')->name('clients_SINGLE-ACTION_putNewEmailAddress');
  19. Route::get('ACTION_sendEmailAddressConfirmationMessage', 'clients_SINGLE_Controller@ACTION_sendEmailAddressConfirmationMessage')->name('clients_SINGLE-ACTION_sendEmailAddressConfirmationMessage');
  20. Route::get('ACTION_confirmEmailAddressWithConfirmationToken', 'clients_SINGLE_Controller@ACTION_confirmEmailAddressWithConfirmationToken')->name('clients_SINGLE-ACTION_confirmEmailAddressWithConfirmationToken');
  21. Route::get('ACTION_deactivate', 'clients_SINGLE_Controller@ACTION_deactivate')->name('clients_SINGLE-ACTION_deactivate');
  22. Route::get('ACTION_updateDeactivationMemo', 'clients_SINGLE_Controller@ACTION_updateDeactivationMemo')->name('clients_SINGLE-ACTION_updateDeactivationMemo');
  23. Route::get('ACTION_reactivate', 'clients_SINGLE_Controller@ACTION_reactivate')->name('clients_SINGLE-ACTION_reactivate');
  24. Route::get('ACTION_updateReactivationMemo', 'clients_SINGLE_Controller@ACTION_updateReactivationMemo')->name('clients_SINGLE-ACTION_updateReactivationMemo');
  25. Route::get('ACTION_editSource', 'clients_SINGLE_Controller@ACTION_editSource')->name('clients_SINGLE-ACTION_editSource');
  26. Route::get('ACTION_setIsDuplicateToTrue', 'clients_SINGLE_Controller@ACTION_setIsDuplicateToTrue')->name('clients_SINGLE-ACTION_setIsDuplicateToTrue');
  27. Route::get('ACTION_setIsDuplicateToFalse', 'clients_SINGLE_Controller@ACTION_setIsDuplicateToFalse')->name('clients_SINGLE-ACTION_setIsDuplicateToFalse');
  28. Route::get('ACTION_editName', 'clients_SINGLE_Controller@ACTION_editName')->name('clients_SINGLE-ACTION_editName');
  29. Route::get('ACTION_editDob', 'clients_SINGLE_Controller@ACTION_editDob')->name('clients_SINGLE-ACTION_editDob');
  30. Route::get('ACTION_editDemographics', 'clients_SINGLE_Controller@ACTION_editDemographics')->name('clients_SINGLE-ACTION_editDemographics');
  31. Route::get('ACTION_editSpouse', 'clients_SINGLE_Controller@ACTION_editSpouse')->name('clients_SINGLE-ACTION_editSpouse');
  32. Route::get('ACTION_editIntakeDetails', 'clients_SINGLE_Controller@ACTION_editIntakeDetails')->name('clients_SINGLE-ACTION_editIntakeDetails');
  33. Route::get('ACTION_editResponsibleParty', 'clients_SINGLE_Controller@ACTION_editResponsibleParty')->name('clients_SINGLE-ACTION_editResponsibleParty');
  34. Route::get('ACTION_editEmergencyRelationship', 'clients_SINGLE_Controller@ACTION_editEmergencyRelationship')->name('clients_SINGLE-ACTION_editEmergencyRelationship');
  35. Route::get('ACTION_editFamilyInfo', 'clients_SINGLE_Controller@ACTION_editFamilyInfo')->name('clients_SINGLE-ACTION_editFamilyInfo');
  36. Route::get('ACTION_editContactDetails', 'clients_SINGLE_Controller@ACTION_editContactDetails')->name('clients_SINGLE-ACTION_editContactDetails');
  37. Route::get('ACTION_editAddress', 'clients_SINGLE_Controller@ACTION_editAddress')->name('clients_SINGLE-ACTION_editAddress');
  38. Route::get('ACTION_editMiscDemographics', 'clients_SINGLE_Controller@ACTION_editMiscDemographics')->name('clients_SINGLE-ACTION_editMiscDemographics');
  39. Route::get('ACTION_setIsDeceasedToTrue', 'clients_SINGLE_Controller@ACTION_setIsDeceasedToTrue')->name('clients_SINGLE-ACTION_setIsDeceasedToTrue');
  40. Route::get('ACTION_setIsDeceasedToFalse', 'clients_SINGLE_Controller@ACTION_setIsDeceasedToFalse')->name('clients_SINGLE-ACTION_setIsDeceasedToFalse');
  41. Route::get('ACTION_editPharmacy', 'clients_SINGLE_Controller@ACTION_editPharmacy')->name('clients_SINGLE-ACTION_editPharmacy');
  42. Route::get('ACTION_editSsn', 'clients_SINGLE_Controller@ACTION_editSsn')->name('clients_SINGLE-ACTION_editSsn');
  43. Route::get('ACTION_putMedicareInfo', 'clients_SINGLE_Controller@ACTION_putMedicareInfo')->name('clients_SINGLE-ACTION_putMedicareInfo');
  44. Route::get('ACTION_removeMcn', 'clients_SINGLE_Controller@ACTION_removeMcn')->name('clients_SINGLE-ACTION_removeMcn');
  45. Route::get('ACTION_updateWebcamInfo', 'clients_SINGLE_Controller@ACTION_updateWebcamInfo')->name('clients_SINGLE-ACTION_updateWebcamInfo');
  46. Route::get('ACTION_putMcp', 'clients_SINGLE_Controller@ACTION_putMcp')->name('clients_SINGLE-ACTION_putMcp');
  47. Route::get('ACTION_removeMcp', 'clients_SINGLE_Controller@ACTION_removeMcp')->name('clients_SINGLE-ACTION_removeMcp');
  48. Route::get('ACTION_putPhysicianPro', 'clients_SINGLE_Controller@ACTION_putPhysicianPro')->name('clients_SINGLE-ACTION_putPhysicianPro');
  49. Route::get('ACTION_removePhysicianPro', 'clients_SINGLE_Controller@ACTION_removePhysicianPro')->name('clients_SINGLE-ACTION_removePhysicianPro');
  50. Route::get('ACTION_updateMcpOnboardingVisitInfo', 'clients_SINGLE_Controller@ACTION_updateMcpOnboardingVisitInfo')->name('clients_SINGLE-ACTION_updateMcpOnboardingVisitInfo');
  51. Route::get('ACTION_updateMcpOnboardingActiveInfo', 'clients_SINGLE_Controller@ACTION_updateMcpOnboardingActiveInfo')->name('clients_SINGLE-ACTION_updateMcpOnboardingActiveInfo');
  52. Route::get('ACTION_putMcpOnboardingPro', 'clients_SINGLE_Controller@ACTION_putMcpOnboardingPro')->name('clients_SINGLE-ACTION_putMcpOnboardingPro');
  53. Route::get('ACTION_removeMcpOnboardingPro', 'clients_SINGLE_Controller@ACTION_removeMcpOnboardingPro')->name('clients_SINGLE-ACTION_removeMcpOnboardingPro');
  54. Route::get('ACTION_acceptAssignmentAsMcpOnboardingPro', 'clients_SINGLE_Controller@ACTION_acceptAssignmentAsMcpOnboardingPro')->name('clients_SINGLE-ACTION_acceptAssignmentAsMcpOnboardingPro');
  55. Route::get('ACTION_rejectAssignmentAsMcpOnboardingPro', 'clients_SINGLE_Controller@ACTION_rejectAssignmentAsMcpOnboardingPro')->name('clients_SINGLE-ACTION_rejectAssignmentAsMcpOnboardingPro');
  56. Route::get('ACTION_updateMcpOnboardingProDecisionMemo', 'clients_SINGLE_Controller@ACTION_updateMcpOnboardingProDecisionMemo')->name('clients_SINGLE-ACTION_updateMcpOnboardingProDecisionMemo');
  57. Route::get('ACTION_updateMcpOnboardingStrategy', 'clients_SINGLE_Controller@ACTION_updateMcpOnboardingStrategy')->name('clients_SINGLE-ACTION_updateMcpOnboardingStrategy');
  58. Route::get('ACTION_updateNextMcpOnboardingAttempt', 'clients_SINGLE_Controller@ACTION_updateNextMcpOnboardingAttempt')->name('clients_SINGLE-ACTION_updateNextMcpOnboardingAttempt');
  59. Route::get('ACTION_putCmPro', 'clients_SINGLE_Controller@ACTION_putCmPro')->name('clients_SINGLE-ACTION_putCmPro');
  60. Route::get('ACTION_removeCmPro', 'clients_SINGLE_Controller@ACTION_removeCmPro')->name('clients_SINGLE-ACTION_removeCmPro');
  61. Route::get('ACTION_putRmePro', 'clients_SINGLE_Controller@ACTION_putRmePro')->name('clients_SINGLE-ACTION_putRmePro');
  62. Route::get('ACTION_removeRmePro', 'clients_SINGLE_Controller@ACTION_removeRmePro')->name('clients_SINGLE-ACTION_removeRmePro');
  63. Route::get('ACTION_putRmmPro', 'clients_SINGLE_Controller@ACTION_putRmmPro')->name('clients_SINGLE-ACTION_putRmmPro');
  64. Route::get('ACTION_removeRmmPro', 'clients_SINGLE_Controller@ACTION_removeRmmPro')->name('clients_SINGLE-ACTION_removeRmmPro');
  65. Route::get('ACTION_putRmsPro', 'clients_SINGLE_Controller@ACTION_putRmsPro')->name('clients_SINGLE-ACTION_putRmsPro');
  66. Route::get('ACTION_removeRmsPro', 'clients_SINGLE_Controller@ACTION_removeRmsPro')->name('clients_SINGLE-ACTION_removeRmsPro');
  67. Route::get('ACTION_putRmgPro', 'clients_SINGLE_Controller@ACTION_putRmgPro')->name('clients_SINGLE-ACTION_putRmgPro');
  68. Route::get('ACTION_removeRmgPro', 'clients_SINGLE_Controller@ACTION_removeRmgPro')->name('clients_SINGLE-ACTION_removeRmgPro');
  69. Route::get('ACTION_putRdPro', 'clients_SINGLE_Controller@ACTION_putRdPro')->name('clients_SINGLE-ACTION_putRdPro');
  70. Route::get('ACTION_removeRdPro', 'clients_SINGLE_Controller@ACTION_removeRdPro')->name('clients_SINGLE-ACTION_removeRdPro');
  71. Route::get('ACTION_updateMntEligibility', 'clients_SINGLE_Controller@ACTION_updateMntEligibility')->name('clients_SINGLE-ACTION_updateMntEligibility');
  72. Route::get('ACTION_updateCmEligibility', 'clients_SINGLE_Controller@ACTION_updateCmEligibility')->name('clients_SINGLE-ACTION_updateCmEligibility');
  73. Route::get('ACTION_setIsEnrolledInCmToFalse', 'clients_SINGLE_Controller@ACTION_setIsEnrolledInCmToFalse')->name('clients_SINGLE-ACTION_setIsEnrolledInCmToFalse');
  74. Route::get('ACTION_setIsEnrolledInCmToTrue', 'clients_SINGLE_Controller@ACTION_setIsEnrolledInCmToTrue')->name('clients_SINGLE-ACTION_setIsEnrolledInCmToTrue');
  75. Route::get('ACTION_updateCmReasons', 'clients_SINGLE_Controller@ACTION_updateCmReasons')->name('clients_SINGLE-ACTION_updateCmReasons');
  76. Route::get('ACTION_updateRmReasons', 'clients_SINGLE_Controller@ACTION_updateRmReasons')->name('clients_SINGLE-ACTION_updateRmReasons');
  77. Route::get('ACTION_updateCmEnrollmentConsentInfo', 'clients_SINGLE_Controller@ACTION_updateCmEnrollmentConsentInfo')->name('clients_SINGLE-ACTION_updateCmEnrollmentConsentInfo');
  78. Route::get('ACTION_updateWhyNotEnrolledInCm', 'clients_SINGLE_Controller@ACTION_updateWhyNotEnrolledInCm')->name('clients_SINGLE-ACTION_updateWhyNotEnrolledInCm');
  79. Route::get('ACTION_updateRmEligibility', 'clients_SINGLE_Controller@ACTION_updateRmEligibility')->name('clients_SINGLE-ACTION_updateRmEligibility');
  80. Route::get('ACTION_setIsEnrolledInRmToFalse', 'clients_SINGLE_Controller@ACTION_setIsEnrolledInRmToFalse')->name('clients_SINGLE-ACTION_setIsEnrolledInRmToFalse');
  81. Route::get('ACTION_setIsEnrolledInRmToTrue', 'clients_SINGLE_Controller@ACTION_setIsEnrolledInRmToTrue')->name('clients_SINGLE-ACTION_setIsEnrolledInRmToTrue');
  82. Route::get('ACTION_updateWhyNotEnrolledInRm', 'clients_SINGLE_Controller@ACTION_updateWhyNotEnrolledInRm')->name('clients_SINGLE-ACTION_updateWhyNotEnrolledInRm');
  83. Route::get('ACTION_updateEquipmentInfo', 'clients_SINGLE_Controller@ACTION_updateEquipmentInfo')->name('clients_SINGLE-ACTION_updateEquipmentInfo');
  84. Route::get('SUB_dashboard', 'clients_SINGLE_Controller@SUB_dashboard')->name('clients_SINGLE-SUB_dashboard');
  85. Route::get('SUB_detail', 'clients_SINGLE_Controller@SUB_detail')->name('clients_SINGLE-SUB_detail');
  86. Route::get('SUB_measurements', 'clients_SINGLE_Controller@SUB_measurements')->name('clients_SINGLE-SUB_measurements');
  87. Route::get('SUB_med_profile', 'clients_SINGLE_Controller@SUB_med_profile')->name('clients_SINGLE-SUB_med_profile');
  88. Route::get('SUB_med_profile_log', 'clients_SINGLE_Controller@SUB_med_profile_log')->name('clients_SINGLE-SUB_med_profile_log');
  89. Route::get('SUB_pro_access', 'clients_SINGLE_Controller@SUB_pro_access')->name('clients_SINGLE-SUB_pro_access');
  90. Route::get('SUB_notes', 'clients_SINGLE_Controller@SUB_notes')->name('clients_SINGLE-SUB_notes');
  91. Route::get('SUB_relationships', 'clients_SINGLE_Controller@SUB_relationships')->name('clients_SINGLE-SUB_relationships');
  92. Route::get('SUB_care_months', 'clients_SINGLE_Controller@SUB_care_months')->name('clients_SINGLE-SUB_care_months');
  93. Route::get('SUB_care_month_entries', 'clients_SINGLE_Controller@SUB_care_month_entries')->name('clients_SINGLE-SUB_care_month_entries');
  94. Route::get('SUB_bills', 'clients_SINGLE_Controller@SUB_bills')->name('clients_SINGLE-SUB_bills');
  95. Route::get('SUB_related_transactions', 'clients_SINGLE_Controller@SUB_related_transactions')->name('clients_SINGLE-SUB_related_transactions');
  96. Route::get('SUB_action_items', 'clients_SINGLE_Controller@SUB_action_items')->name('clients_SINGLE-SUB_action_items');
  97. Route::get('SUB_erx', 'clients_SINGLE_Controller@SUB_erx')->name('clients_SINGLE-SUB_erx');
  98. Route::get('SUB_mcp_updates', 'clients_SINGLE_Controller@SUB_mcp_updates')->name('clients_SINGLE-SUB_mcp_updates');
  99. Route::get('SUB_client_sms', 'clients_SINGLE_Controller@SUB_client_sms')->name('clients_SINGLE-SUB_client_sms');
  100. Route::get('SUB_client_sms_numbers', 'clients_SINGLE_Controller@SUB_client_sms_numbers')->name('clients_SINGLE-SUB_client_sms_numbers');
  101. Route::get('SUB_client_documents', 'clients_SINGLE_Controller@SUB_client_documents')->name('clients_SINGLE-SUB_client_documents');
  102. Route::get('SUB_audit_log', 'clients_SINGLE_Controller@SUB_audit_log')->name('clients_SINGLE-SUB_audit_log');
  103. Route::get('SUB_bdt_devices', 'clients_SINGLE_Controller@SUB_bdt_devices')->name('clients_SINGLE-SUB_bdt_devices');
  104. Route::get('SUB_device_measurements', 'clients_SINGLE_Controller@SUB_device_measurements')->name('clients_SINGLE-SUB_device_measurements');
  105. Route::get('ACTION_add_new_measurement', 'clients_SINGLE_Controller@ACTION_add_new_measurement')->name('clients_SINGLE-ACTION_add_new_measurement');
  106. Route::get('ACTION_add_new_client_info_line', 'clients_SINGLE_Controller@ACTION_add_new_client_info_line')->name('clients_SINGLE-ACTION_add_new_client_info_line');
  107. Route::get('ACTION_add_new_client_pro_access', 'clients_SINGLE_Controller@ACTION_add_new_client_pro_access')->name('clients_SINGLE-ACTION_add_new_client_pro_access');
  108. Route::get('ACTION_add_new_note', 'clients_SINGLE_Controller@ACTION_add_new_note')->name('clients_SINGLE-ACTION_add_new_note');
  109. Route::get('ACTION_add_new_relationship', 'clients_SINGLE_Controller@ACTION_add_new_relationship')->name('clients_SINGLE-ACTION_add_new_relationship');
  110. Route::get('ACTION_add_new_care_month', 'clients_SINGLE_Controller@ACTION_add_new_care_month')->name('clients_SINGLE-ACTION_add_new_care_month');
  111. Route::get('ACTION_add_new_action_item', 'clients_SINGLE_Controller@ACTION_add_new_action_item')->name('clients_SINGLE-ACTION_add_new_action_item');
  112. Route::get('ACTION_add_new_erx_action_item', 'clients_SINGLE_Controller@ACTION_add_new_erx_action_item')->name('clients_SINGLE-ACTION_add_new_erx_action_item');
  113. Route::get('ACTION_add_new_client_document', 'clients_SINGLE_Controller@ACTION_add_new_client_document')->name('clients_SINGLE-ACTION_add_new_client_document');
  114. Route::get('ACTION_add_new_client_bdt_device', 'clients_SINGLE_Controller@ACTION_add_new_client_bdt_device')->name('clients_SINGLE-ACTION_add_new_client_bdt_device');
  115. });
  116. // --- pro: notes --- //
  117. Route::prefix('/notes')->group(function () {
  118. Route::get('', 'notes_Controller@index')->name('notes-index');
  119. Route::get('view/{uid}', 'notes_Controller@view')->name('notes-view');
  120. });
  121. // --- pro: notes_SINGLE --- //
  122. Route::prefix('/notes/view/{uid}')->group(function () {
  123. Route::get('ACTION_signAsHcp', 'notes_SINGLE_Controller@ACTION_signAsHcp')->name('notes_SINGLE-ACTION_signAsHcp');
  124. Route::get('SUB_dashboard', 'notes_SINGLE_Controller@SUB_dashboard')->name('notes_SINGLE-SUB_dashboard');
  125. Route::get('SUB_bills', 'notes_SINGLE_Controller@SUB_bills')->name('notes_SINGLE-SUB_bills');
  126. Route::get('SUB_sections', 'notes_SINGLE_Controller@SUB_sections')->name('notes_SINGLE-SUB_sections');
  127. Route::get('ACTION_add_new_bill', 'notes_SINGLE_Controller@ACTION_add_new_bill')->name('notes_SINGLE-ACTION_add_new_bill');
  128. });
  129. // --- pro: relationships --- //
  130. Route::prefix('/relationships')->group(function () {
  131. Route::get('', 'relationships_Controller@index')->name('relationships-index');
  132. Route::get('view/{uid}', 'relationships_Controller@view')->name('relationships-view');
  133. });
  134. // --- pro: relationships_SINGLE --- //
  135. Route::prefix('/relationships/view/{uid}')->group(function () {
  136. Route::get('ACTION_updateBasic', 'relationships_SINGLE_Controller@ACTION_updateBasic')->name('relationships_SINGLE-ACTION_updateBasic');
  137. Route::get('SUB_dashboard', 'relationships_SINGLE_Controller@SUB_dashboard')->name('relationships_SINGLE-SUB_dashboard');
  138. });
  139. // --- pro: measurements --- //
  140. Route::prefix('/measurements')->group(function () {
  141. Route::get('', 'measurements_Controller@index')->name('measurements-index');
  142. Route::get('view/{uid}', 'measurements_Controller@view')->name('measurements-view');
  143. });
  144. // --- pro: measurements_SINGLE --- //
  145. Route::prefix('/measurements/view/{uid}')->group(function () {
  146. Route::get('ACTION_updateBasic', 'measurements_SINGLE_Controller@ACTION_updateBasic')->name('measurements_SINGLE-ACTION_updateBasic');
  147. Route::get('ACTION_remove', 'measurements_SINGLE_Controller@ACTION_remove')->name('measurements_SINGLE-ACTION_remove');
  148. Route::get('SUB_dashboard', 'measurements_SINGLE_Controller@SUB_dashboard')->name('measurements_SINGLE-SUB_dashboard');
  149. });
  150. // --- pro: erx --- //
  151. Route::prefix('/erx')->group(function () {
  152. Route::get('', 'erx_Controller@index')->name('erx-index');
  153. Route::get('view/{uid}', 'erx_Controller@view')->name('erx-view');
  154. });
  155. // --- pro: erx_SINGLE --- //
  156. Route::prefix('/erx/view/{uid}')->group(function () {
  157. Route::get('ACTION_signAsPrescriber', 'erx_SINGLE_Controller@ACTION_signAsPrescriber')->name('erx_SINGLE-ACTION_signAsPrescriber');
  158. Route::get('ACTION_updateToFacility', 'erx_SINGLE_Controller@ACTION_updateToFacility')->name('erx_SINGLE-ACTION_updateToFacility');
  159. Route::get('ACTION_updateContent', 'erx_SINGLE_Controller@ACTION_updateContent')->name('erx_SINGLE-ACTION_updateContent');
  160. Route::get('ACTION_updateStatus', 'erx_SINGLE_Controller@ACTION_updateStatus')->name('erx_SINGLE-ACTION_updateStatus');
  161. Route::get('ACTION_efax', 'erx_SINGLE_Controller@ACTION_efax')->name('erx_SINGLE-ACTION_efax');
  162. Route::get('SUB_dashboard', 'erx_SINGLE_Controller@SUB_dashboard')->name('erx_SINGLE-SUB_dashboard');
  163. Route::get('SUB_audit_log', 'erx_SINGLE_Controller@SUB_audit_log')->name('erx_SINGLE-SUB_audit_log');
  164. });
  165. // --- pro: action_items --- //
  166. Route::prefix('/action_items')->group(function () {
  167. Route::get('', 'action_items_Controller@index')->name('action_items-index');
  168. Route::get('view/{uid}', 'action_items_Controller@view')->name('action_items-view');
  169. });
  170. // --- pro: action_items_SINGLE --- //
  171. Route::prefix('/action_items/view/{uid}')->group(function () {
  172. Route::get('ACTION_signAsPrescriber', 'action_items_SINGLE_Controller@ACTION_signAsPrescriber')->name('action_items_SINGLE-ACTION_signAsPrescriber');
  173. Route::get('ACTION_updateToFacility', 'action_items_SINGLE_Controller@ACTION_updateToFacility')->name('action_items_SINGLE-ACTION_updateToFacility');
  174. Route::get('ACTION_updateContent', 'action_items_SINGLE_Controller@ACTION_updateContent')->name('action_items_SINGLE-ACTION_updateContent');
  175. Route::get('ACTION_updateStatus', 'action_items_SINGLE_Controller@ACTION_updateStatus')->name('action_items_SINGLE-ACTION_updateStatus');
  176. Route::get('ACTION_efax', 'action_items_SINGLE_Controller@ACTION_efax')->name('action_items_SINGLE-ACTION_efax');
  177. Route::get('SUB_dashboard', 'action_items_SINGLE_Controller@SUB_dashboard')->name('action_items_SINGLE-SUB_dashboard');
  178. Route::get('SUB_audit_log', 'action_items_SINGLE_Controller@SUB_audit_log')->name('action_items_SINGLE-SUB_audit_log');
  179. });
  180. // --- pro: tickets --- //
  181. Route::prefix('/tickets')->group(function () {
  182. Route::get('', 'tickets_Controller@index')->name('tickets-index');
  183. Route::get('view/{uid}', 'tickets_Controller@view')->name('tickets-view');
  184. });
  185. // --- pro: tickets_SINGLE --- //
  186. Route::prefix('/tickets/view/{uid}')->group(function () {
  187. Route::get('ACTION_close', 'tickets_SINGLE_Controller@ACTION_close')->name('tickets_SINGLE-ACTION_close');
  188. Route::get('SUB_dashboard', 'tickets_SINGLE_Controller@SUB_dashboard')->name('tickets_SINGLE-SUB_dashboard');
  189. });
  190. // --- pro: care_months --- //
  191. Route::prefix('/care_months')->group(function () {
  192. Route::get('', 'care_months_Controller@index')->name('care_months-index');
  193. Route::get('view/{uid}', 'care_months_Controller@view')->name('care_months-view');
  194. });
  195. // --- pro: care_months_SINGLE --- //
  196. Route::prefix('/care_months/view/{uid}')->group(function () {
  197. Route::get('ACTION_assignMcpPro', 'care_months_SINGLE_Controller@ACTION_assignMcpPro')->name('care_months_SINGLE-ACTION_assignMcpPro');
  198. Route::get('ACTION_changeMcpPro', 'care_months_SINGLE_Controller@ACTION_changeMcpPro')->name('care_months_SINGLE-ACTION_changeMcpPro');
  199. Route::get('ACTION_removeMcpPro', 'care_months_SINGLE_Controller@ACTION_removeMcpPro')->name('care_months_SINGLE-ACTION_removeMcpPro');
  200. Route::get('ACTION_assignCmPro', 'care_months_SINGLE_Controller@ACTION_assignCmPro')->name('care_months_SINGLE-ACTION_assignCmPro');
  201. Route::get('ACTION_changeCmPro', 'care_months_SINGLE_Controller@ACTION_changeCmPro')->name('care_months_SINGLE-ACTION_changeCmPro');
  202. Route::get('ACTION_removeCmPro', 'care_months_SINGLE_Controller@ACTION_removeCmPro')->name('care_months_SINGLE-ACTION_removeCmPro');
  203. Route::get('ACTION_assignRmePro', 'care_months_SINGLE_Controller@ACTION_assignRmePro')->name('care_months_SINGLE-ACTION_assignRmePro');
  204. Route::get('ACTION_changeRmePro', 'care_months_SINGLE_Controller@ACTION_changeRmePro')->name('care_months_SINGLE-ACTION_changeRmePro');
  205. Route::get('ACTION_removeRmePro', 'care_months_SINGLE_Controller@ACTION_removeRmePro')->name('care_months_SINGLE-ACTION_removeRmePro');
  206. Route::get('ACTION_assignRmmPro', 'care_months_SINGLE_Controller@ACTION_assignRmmPro')->name('care_months_SINGLE-ACTION_assignRmmPro');
  207. Route::get('ACTION_changeRmmPro', 'care_months_SINGLE_Controller@ACTION_changeRmmPro')->name('care_months_SINGLE-ACTION_changeRmmPro');
  208. Route::get('ACTION_removeRmmPro', 'care_months_SINGLE_Controller@ACTION_removeRmmPro')->name('care_months_SINGLE-ACTION_removeRmmPro');
  209. Route::get('ACTION_assignRmsPro', 'care_months_SINGLE_Controller@ACTION_assignRmsPro')->name('care_months_SINGLE-ACTION_assignRmsPro');
  210. Route::get('ACTION_changeRmsPro', 'care_months_SINGLE_Controller@ACTION_changeRmsPro')->name('care_months_SINGLE-ACTION_changeRmsPro');
  211. Route::get('ACTION_removeRmsPro', 'care_months_SINGLE_Controller@ACTION_removeRmsPro')->name('care_months_SINGLE-ACTION_removeRmsPro');
  212. Route::get('ACTION_assignRmgPro', 'care_months_SINGLE_Controller@ACTION_assignRmgPro')->name('care_months_SINGLE-ACTION_assignRmgPro');
  213. Route::get('ACTION_changeRmgPro', 'care_months_SINGLE_Controller@ACTION_changeRmgPro')->name('care_months_SINGLE-ACTION_changeRmgPro');
  214. Route::get('ACTION_removeRmgPro', 'care_months_SINGLE_Controller@ACTION_removeRmgPro')->name('care_months_SINGLE-ACTION_removeRmgPro');
  215. Route::get('ACTION_updateCmReasons', 'care_months_SINGLE_Controller@ACTION_updateCmReasons')->name('care_months_SINGLE-ACTION_updateCmReasons');
  216. Route::get('ACTION_updateRmReasons', 'care_months_SINGLE_Controller@ACTION_updateRmReasons')->name('care_months_SINGLE-ACTION_updateRmReasons');
  217. Route::get('ACTION_setIsClientEnrolledInCmToTrue', 'care_months_SINGLE_Controller@ACTION_setIsClientEnrolledInCmToTrue')->name('care_months_SINGLE-ACTION_setIsClientEnrolledInCmToTrue');
  218. Route::get('ACTION_setIsClientEnrolledInCmToFalse', 'care_months_SINGLE_Controller@ACTION_setIsClientEnrolledInCmToFalse')->name('care_months_SINGLE-ACTION_setIsClientEnrolledInCmToFalse');
  219. Route::get('ACTION_updateWhyNotEnrolledInCm', 'care_months_SINGLE_Controller@ACTION_updateWhyNotEnrolledInCm')->name('care_months_SINGLE-ACTION_updateWhyNotEnrolledInCm');
  220. Route::get('ACTION_setIsClientEnrolledInRmToTrue', 'care_months_SINGLE_Controller@ACTION_setIsClientEnrolledInRmToTrue')->name('care_months_SINGLE-ACTION_setIsClientEnrolledInRmToTrue');
  221. Route::get('ACTION_setIsClientEnrolledInRmToFalse', 'care_months_SINGLE_Controller@ACTION_setIsClientEnrolledInRmToFalse')->name('care_months_SINGLE-ACTION_setIsClientEnrolledInRmToFalse');
  222. Route::get('ACTION_updateWhyNotEnrolledInRm', 'care_months_SINGLE_Controller@ACTION_updateWhyNotEnrolledInRm')->name('care_months_SINGLE-ACTION_updateWhyNotEnrolledInRm');
  223. Route::get('ACTION_generateBillForCm', 'care_months_SINGLE_Controller@ACTION_generateBillForCm')->name('care_months_SINGLE-ACTION_generateBillForCm');
  224. Route::get('ACTION_generateBillForRm', 'care_months_SINGLE_Controller@ACTION_generateBillForRm')->name('care_months_SINGLE-ACTION_generateBillForRm');
  225. Route::get('ACTION_setIsCmCanceledThisMonthToTrue', 'care_months_SINGLE_Controller@ACTION_setIsCmCanceledThisMonthToTrue')->name('care_months_SINGLE-ACTION_setIsCmCanceledThisMonthToTrue');
  226. Route::get('ACTION_updateWhyIsCmCanceledThisMonth', 'care_months_SINGLE_Controller@ACTION_updateWhyIsCmCanceledThisMonth')->name('care_months_SINGLE-ACTION_updateWhyIsCmCanceledThisMonth');
  227. Route::get('ACTION_setIsCmCanceledThisMonthToFalse', 'care_months_SINGLE_Controller@ACTION_setIsCmCanceledThisMonthToFalse')->name('care_months_SINGLE-ACTION_setIsCmCanceledThisMonthToFalse');
  228. Route::get('ACTION_setIsRmCanceledThisMonthToTrue', 'care_months_SINGLE_Controller@ACTION_setIsRmCanceledThisMonthToTrue')->name('care_months_SINGLE-ACTION_setIsRmCanceledThisMonthToTrue');
  229. Route::get('ACTION_updateWhyIsRmCanceledThisMonth', 'care_months_SINGLE_Controller@ACTION_updateWhyIsRmCanceledThisMonth')->name('care_months_SINGLE-ACTION_updateWhyIsRmCanceledThisMonth');
  230. Route::get('ACTION_setIsRmCanceledThisMonthToFalse', 'care_months_SINGLE_Controller@ACTION_setIsRmCanceledThisMonthToFalse')->name('care_months_SINGLE-ACTION_setIsRmCanceledThisMonthToFalse');
  231. Route::get('ACTION_setIsTmThisMonthToTrue', 'care_months_SINGLE_Controller@ACTION_setIsTmThisMonthToTrue')->name('care_months_SINGLE-ACTION_setIsTmThisMonthToTrue');
  232. Route::get('ACTION_setIsTmThisMonthToFalse', 'care_months_SINGLE_Controller@ACTION_setIsTmThisMonthToFalse')->name('care_months_SINGLE-ACTION_setIsTmThisMonthToFalse');
  233. Route::get('SUB_dashboard', 'care_months_SINGLE_Controller@SUB_dashboard')->name('care_months_SINGLE-SUB_dashboard');
  234. Route::get('SUB_cm_time_entries', 'care_months_SINGLE_Controller@SUB_cm_time_entries')->name('care_months_SINGLE-SUB_cm_time_entries');
  235. Route::get('SUB_rm_time_entries', 'care_months_SINGLE_Controller@SUB_rm_time_entries')->name('care_months_SINGLE-SUB_rm_time_entries');
  236. Route::get('SUB_bills', 'care_months_SINGLE_Controller@SUB_bills')->name('care_months_SINGLE-SUB_bills');
  237. Route::get('SUB_audit_log', 'care_months_SINGLE_Controller@SUB_audit_log')->name('care_months_SINGLE-SUB_audit_log');
  238. Route::get('ACTION_add_new_care_month_entry', 'care_months_SINGLE_Controller@ACTION_add_new_care_month_entry')->name('care_months_SINGLE-ACTION_add_new_care_month_entry');
  239. Route::get('ACTION_add_new_care_month_entry', 'care_months_SINGLE_Controller@ACTION_add_new_care_month_entry')->name('care_months_SINGLE-ACTION_add_new_care_month_entry');
  240. });
  241. // --- pro: care_month_entries --- //
  242. Route::prefix('/care_month_entries')->group(function () {
  243. Route::get('', 'care_month_entries_Controller@index')->name('care_month_entries-index');
  244. Route::get('view/{uid}', 'care_month_entries_Controller@view')->name('care_month_entries-view');
  245. });
  246. // --- pro: care_month_entries_SINGLE --- //
  247. Route::prefix('/care_month_entries/view/{uid}')->group(function () {
  248. Route::get('ACTION_updateContent', 'care_month_entries_SINGLE_Controller@ACTION_updateContent')->name('care_month_entries_SINGLE-ACTION_updateContent');
  249. Route::get('ACTION_updateTiming', 'care_month_entries_SINGLE_Controller@ACTION_updateTiming')->name('care_month_entries_SINGLE-ACTION_updateTiming');
  250. Route::get('ACTION_remove', 'care_month_entries_SINGLE_Controller@ACTION_remove')->name('care_month_entries_SINGLE-ACTION_remove');
  251. Route::get('SUB_dashboard', 'care_month_entries_SINGLE_Controller@SUB_dashboard')->name('care_month_entries_SINGLE-SUB_dashboard');
  252. });
  253. // --- pro: bills --- //
  254. Route::prefix('/bills')->group(function () {
  255. Route::get('', 'bills_Controller@index')->name('bills-index');
  256. Route::get('view/{uid}', 'bills_Controller@view')->name('bills-view');
  257. });
  258. // --- pro: bills_SINGLE --- //
  259. Route::prefix('/bills/view/{uid}')->group(function () {
  260. Route::get('ACTION_payHcpAmount', 'bills_SINGLE_Controller@ACTION_payHcpAmount')->name('bills_SINGLE-ACTION_payHcpAmount');
  261. Route::get('ACTION_payHcpDifferentAmount', 'bills_SINGLE_Controller@ACTION_payHcpDifferentAmount')->name('bills_SINGLE-ACTION_payHcpDifferentAmount');
  262. Route::get('ACTION_payCmAmount', 'bills_SINGLE_Controller@ACTION_payCmAmount')->name('bills_SINGLE-ACTION_payCmAmount');
  263. Route::get('ACTION_payCmDifferentAmount', 'bills_SINGLE_Controller@ACTION_payCmDifferentAmount')->name('bills_SINGLE-ACTION_payCmDifferentAmount');
  264. Route::get('ACTION_payRmeAmount', 'bills_SINGLE_Controller@ACTION_payRmeAmount')->name('bills_SINGLE-ACTION_payRmeAmount');
  265. Route::get('ACTION_payRmeDifferentAmount', 'bills_SINGLE_Controller@ACTION_payRmeDifferentAmount')->name('bills_SINGLE-ACTION_payRmeDifferentAmount');
  266. Route::get('ACTION_payRmmAmount', 'bills_SINGLE_Controller@ACTION_payRmmAmount')->name('bills_SINGLE-ACTION_payRmmAmount');
  267. Route::get('ACTION_payRmmDifferentAmount', 'bills_SINGLE_Controller@ACTION_payRmmDifferentAmount')->name('bills_SINGLE-ACTION_payRmmDifferentAmount');
  268. Route::get('ACTION_signAsHcp', 'bills_SINGLE_Controller@ACTION_signAsHcp')->name('bills_SINGLE-ACTION_signAsHcp');
  269. Route::get('ACTION_signAsCm', 'bills_SINGLE_Controller@ACTION_signAsCm')->name('bills_SINGLE-ACTION_signAsCm');
  270. Route::get('ACTION_signAsRme', 'bills_SINGLE_Controller@ACTION_signAsRme')->name('bills_SINGLE-ACTION_signAsRme');
  271. Route::get('ACTION_signAsRmm', 'bills_SINGLE_Controller@ACTION_signAsRmm')->name('bills_SINGLE-ACTION_signAsRmm');
  272. Route::get('ACTION_markSubmitted', 'bills_SINGLE_Controller@ACTION_markSubmitted')->name('bills_SINGLE-ACTION_markSubmitted');
  273. Route::get('ACTION_markCancelled', 'bills_SINGLE_Controller@ACTION_markCancelled')->name('bills_SINGLE-ACTION_markCancelled');
  274. Route::get('ACTION_putCollectedAmount', 'bills_SINGLE_Controller@ACTION_putCollectedAmount')->name('bills_SINGLE-ACTION_putCollectedAmount');
  275. Route::get('SUB_dashboard', 'bills_SINGLE_Controller@SUB_dashboard')->name('bills_SINGLE-SUB_dashboard');
  276. Route::get('SUB_transactions', 'bills_SINGLE_Controller@SUB_transactions')->name('bills_SINGLE-SUB_transactions');
  277. Route::get('SUB_audit_log', 'bills_SINGLE_Controller@SUB_audit_log')->name('bills_SINGLE-SUB_audit_log');
  278. });
  279. // --- pro: transactions --- //
  280. Route::prefix('/transactions')->group(function () {
  281. Route::get('', 'transactions_Controller@index')->name('transactions-index');
  282. Route::get('view/{uid}', 'transactions_Controller@view')->name('transactions-view');
  283. });
  284. // --- pro: transactions_SINGLE --- //
  285. Route::prefix('/transactions/view/{uid}')->group(function () {
  286. Route::get('SUB_dashboard', 'transactions_SINGLE_Controller@SUB_dashboard')->name('transactions_SINGLE-SUB_dashboard');
  287. });
  288. // --- pro: med_profile_lines --- //
  289. Route::prefix('/med_profile_lines')->group(function () {
  290. Route::get('', 'med_profile_lines_Controller@index')->name('med_profile_lines-index');
  291. Route::get('view/{uid}', 'med_profile_lines_Controller@view')->name('med_profile_lines-view');
  292. });
  293. // --- pro: med_profile_lines_SINGLE --- //
  294. Route::prefix('/med_profile_lines/view/{uid}')->group(function () {
  295. Route::get('ACTION_remove', 'med_profile_lines_SINGLE_Controller@ACTION_remove')->name('med_profile_lines_SINGLE-ACTION_remove');
  296. Route::get('ACTION_updateContent', 'med_profile_lines_SINGLE_Controller@ACTION_updateContent')->name('med_profile_lines_SINGLE-ACTION_updateContent');
  297. Route::get('SUB_dashboard', 'med_profile_lines_SINGLE_Controller@SUB_dashboard')->name('med_profile_lines_SINGLE-SUB_dashboard');
  298. });
  299. // --- pro: med_profile_line_updates --- //
  300. Route::prefix('/med_profile_line_updates')->group(function () {
  301. Route::get('', 'med_profile_line_updates_Controller@index')->name('med_profile_line_updates-index');
  302. });
  303. // --- pro: mcp_updates --- //
  304. Route::prefix('/mcp_updates')->group(function () {
  305. Route::get('', 'mcp_updates_Controller@index')->name('mcp_updates-index');
  306. });
  307. // --- admin: facilities --- //
  308. Route::prefix('/facilities')->group(function () {
  309. Route::get('', 'facilities_Controller@index')->name('facilities-index');
  310. Route::get('add_new', 'facilities_Controller@add_new')->name('facilities-add_new');
  311. Route::get('view/{uid}', 'facilities_Controller@view')->name('facilities-view');
  312. });
  313. // --- admin: facilities_SINGLE --- //
  314. Route::prefix('/facilities/view/{uid}')->group(function () {
  315. Route::get('ACTION_updateBasic', 'facilities_SINGLE_Controller@ACTION_updateBasic')->name('facilities_SINGLE-ACTION_updateBasic');
  316. Route::get('ACTION_deactivate', 'facilities_SINGLE_Controller@ACTION_deactivate')->name('facilities_SINGLE-ACTION_deactivate');
  317. Route::get('ACTION_updateDeactivationMemo', 'facilities_SINGLE_Controller@ACTION_updateDeactivationMemo')->name('facilities_SINGLE-ACTION_updateDeactivationMemo');
  318. Route::get('ACTION_reactivate', 'facilities_SINGLE_Controller@ACTION_reactivate')->name('facilities_SINGLE-ACTION_reactivate');
  319. Route::get('ACTION_updateReactivationMemo', 'facilities_SINGLE_Controller@ACTION_updateReactivationMemo')->name('facilities_SINGLE-ACTION_updateReactivationMemo');
  320. Route::get('SUB_dashboard', 'facilities_SINGLE_Controller@SUB_dashboard')->name('facilities_SINGLE-SUB_dashboard');
  321. Route::get('SUB_erx', 'facilities_SINGLE_Controller@SUB_erx')->name('facilities_SINGLE-SUB_erx');
  322. Route::get('SUB_action_items', 'facilities_SINGLE_Controller@SUB_action_items')->name('facilities_SINGLE-SUB_action_items');
  323. Route::get('SUB_audit_log', 'facilities_SINGLE_Controller@SUB_audit_log')->name('facilities_SINGLE-SUB_audit_log');
  324. });
  325. // --- admin: pros --- //
  326. Route::prefix('/pros')->group(function () {
  327. Route::get('', 'pros_Controller@index')->name('pros-index');
  328. Route::get('add_new', 'pros_Controller@add_new')->name('pros-add_new');
  329. Route::get('view/{uid}', 'pros_Controller@view')->name('pros-view');
  330. });
  331. // --- admin: pros_SINGLE --- //
  332. Route::prefix('/pros/view/{uid}')->group(function () {
  333. Route::get('ACTION_sendCellNumberConfirmationMessage', 'pros_SINGLE_Controller@ACTION_sendCellNumberConfirmationMessage')->name('pros_SINGLE-ACTION_sendCellNumberConfirmationMessage');
  334. Route::get('ACTION_adminResetPassword', 'pros_SINGLE_Controller@ACTION_adminResetPassword')->name('pros_SINGLE-ACTION_adminResetPassword');
  335. Route::get('ACTION_confirmCellNumberWithConfirmationToken', 'pros_SINGLE_Controller@ACTION_confirmCellNumberWithConfirmationToken')->name('pros_SINGLE-ACTION_confirmCellNumberWithConfirmationToken');
  336. Route::get('ACTION_putNewCellNumber', 'pros_SINGLE_Controller@ACTION_putNewCellNumber')->name('pros_SINGLE-ACTION_putNewCellNumber');
  337. Route::get('ACTION_confirmEmailAddressWithConfirmationToken', 'pros_SINGLE_Controller@ACTION_confirmEmailAddressWithConfirmationToken')->name('pros_SINGLE-ACTION_confirmEmailAddressWithConfirmationToken');
  338. Route::get('ACTION_putNewEmailAddress', 'pros_SINGLE_Controller@ACTION_putNewEmailAddress')->name('pros_SINGLE-ACTION_putNewEmailAddress');
  339. Route::get('ACTION_updateName', 'pros_SINGLE_Controller@ACTION_updateName')->name('pros_SINGLE-ACTION_updateName');
  340. Route::get('ACTION_updateHrInfo', 'pros_SINGLE_Controller@ACTION_updateHrInfo')->name('pros_SINGLE-ACTION_updateHrInfo');
  341. Route::get('ACTION_updateProfession', 'pros_SINGLE_Controller@ACTION_updateProfession')->name('pros_SINGLE-ACTION_updateProfession');
  342. Route::get('ACTION_updateEnrolledHcpInfo', 'pros_SINGLE_Controller@ACTION_updateEnrolledHcpInfo')->name('pros_SINGLE-ACTION_updateEnrolledHcpInfo');
  343. Route::get('ACTION_putProfilePicture', 'pros_SINGLE_Controller@ACTION_putProfilePicture')->name('pros_SINGLE-ACTION_putProfilePicture');
  344. Route::get('ACTION_updatePhoneInfo', 'pros_SINGLE_Controller@ACTION_updatePhoneInfo')->name('pros_SINGLE-ACTION_updatePhoneInfo');
  345. Route::get('ACTION_updateAddress', 'pros_SINGLE_Controller@ACTION_updateAddress')->name('pros_SINGLE-ACTION_updateAddress');
  346. Route::get('ACTION_updatePaymentProcessingDetail', 'pros_SINGLE_Controller@ACTION_updatePaymentProcessingDetail')->name('pros_SINGLE-ACTION_updatePaymentProcessingDetail');
  347. Route::get('ACTION_uploadDriverLicense', 'pros_SINGLE_Controller@ACTION_uploadDriverLicense')->name('pros_SINGLE-ACTION_uploadDriverLicense');
  348. Route::get('ACTION_updateDriverLicenseInfo', 'pros_SINGLE_Controller@ACTION_updateDriverLicenseInfo')->name('pros_SINGLE-ACTION_updateDriverLicenseInfo');
  349. Route::get('ACTION_updateSsn', 'pros_SINGLE_Controller@ACTION_updateSsn')->name('pros_SINGLE-ACTION_updateSsn');
  350. Route::get('ACTION_sendEmailAddressConfirmationMessage', 'pros_SINGLE_Controller@ACTION_sendEmailAddressConfirmationMessage')->name('pros_SINGLE-ACTION_sendEmailAddressConfirmationMessage');
  351. Route::get('ACTION_setIsHcpToTrue', 'pros_SINGLE_Controller@ACTION_setIsHcpToTrue')->name('pros_SINGLE-ACTION_setIsHcpToTrue');
  352. Route::get('ACTION_setIsHcpToFalse', 'pros_SINGLE_Controller@ACTION_setIsHcpToFalse')->name('pros_SINGLE-ACTION_setIsHcpToFalse');
  353. Route::get('ACTION_setIsEnrolledAsHcpToTrue', 'pros_SINGLE_Controller@ACTION_setIsEnrolledAsHcpToTrue')->name('pros_SINGLE-ACTION_setIsEnrolledAsHcpToTrue');
  354. Route::get('ACTION_setIsEnrolledAsHcpToFalse', 'pros_SINGLE_Controller@ACTION_setIsEnrolledAsHcpToFalse')->name('pros_SINGLE-ACTION_setIsEnrolledAsHcpToFalse');
  355. Route::get('ACTION_setIsEnrolledAsMcpToTrue', 'pros_SINGLE_Controller@ACTION_setIsEnrolledAsMcpToTrue')->name('pros_SINGLE-ACTION_setIsEnrolledAsMcpToTrue');
  356. Route::get('ACTION_setIsEnrolledAsMcpToFalse', 'pros_SINGLE_Controller@ACTION_setIsEnrolledAsMcpToFalse')->name('pros_SINGLE-ACTION_setIsEnrolledAsMcpToFalse');
  357. Route::get('ACTION_setIsPhysicianToTrue', 'pros_SINGLE_Controller@ACTION_setIsPhysicianToTrue')->name('pros_SINGLE-ACTION_setIsPhysicianToTrue');
  358. Route::get('ACTION_setIsPhysicianToFalse', 'pros_SINGLE_Controller@ACTION_setIsPhysicianToFalse')->name('pros_SINGLE-ACTION_setIsPhysicianToFalse');
  359. Route::get('ACTION_setHasAccessToNextPatientButtonToTrue', 'pros_SINGLE_Controller@ACTION_setHasAccessToNextPatientButtonToTrue')->name('pros_SINGLE-ACTION_setHasAccessToNextPatientButtonToTrue');
  360. Route::get('ACTION_setHasAccessToNextPatientButtonToFalse', 'pros_SINGLE_Controller@ACTION_setHasAccessToNextPatientButtonToFalse')->name('pros_SINGLE-ACTION_setHasAccessToNextPatientButtonToFalse');
  361. Route::get('ACTION_setCanCreateClientWithInvalidMcnToTrue', 'pros_SINGLE_Controller@ACTION_setCanCreateClientWithInvalidMcnToTrue')->name('pros_SINGLE-ACTION_setCanCreateClientWithInvalidMcnToTrue');
  362. Route::get('ACTION_setCanCreateClientWithInvalidMcnToFalse', 'pros_SINGLE_Controller@ACTION_setCanCreateClientWithInvalidMcnToFalse')->name('pros_SINGLE-ACTION_setCanCreateClientWithInvalidMcnToFalse');
  363. Route::get('ACTION_setCanAccessRmPortalToTrue', 'pros_SINGLE_Controller@ACTION_setCanAccessRmPortalToTrue')->name('pros_SINGLE-ACTION_setCanAccessRmPortalToTrue');
  364. Route::get('ACTION_setCanAccessRmPortalToFalse', 'pros_SINGLE_Controller@ACTION_setCanAccessRmPortalToFalse')->name('pros_SINGLE-ACTION_setCanAccessRmPortalToFalse');
  365. Route::get('ACTION_setIsVideoVisitAssistantToTrue', 'pros_SINGLE_Controller@ACTION_setIsVideoVisitAssistantToTrue')->name('pros_SINGLE-ACTION_setIsVideoVisitAssistantToTrue');
  366. Route::get('ACTION_setIsVideoVisitAssistantToFalse', 'pros_SINGLE_Controller@ACTION_setIsVideoVisitAssistantToFalse')->name('pros_SINGLE-ACTION_setIsVideoVisitAssistantToFalse');
  367. Route::get('ACTION_removeProfilePicture', 'pros_SINGLE_Controller@ACTION_removeProfilePicture')->name('pros_SINGLE-ACTION_removeProfilePicture');
  368. Route::get('ACTION_updateW9Detail', 'pros_SINGLE_Controller@ACTION_updateW9Detail')->name('pros_SINGLE-ACTION_updateW9Detail');
  369. Route::get('ACTION_updateSignedContractPdf', 'pros_SINGLE_Controller@ACTION_updateSignedContractPdf')->name('pros_SINGLE-ACTION_updateSignedContractPdf');
  370. Route::get('ACTION_setIsPaymentProcessingDetailCompleteToTrue', 'pros_SINGLE_Controller@ACTION_setIsPaymentProcessingDetailCompleteToTrue')->name('pros_SINGLE-ACTION_setIsPaymentProcessingDetailCompleteToTrue');
  371. Route::get('ACTION_setIsPaymentProcessingDetailCompleteToFalse', 'pros_SINGLE_Controller@ACTION_setIsPaymentProcessingDetailCompleteToFalse')->name('pros_SINGLE-ACTION_setIsPaymentProcessingDetailCompleteToFalse');
  372. Route::get('ACTION_setIsDriverLicenseCompleteToTrue', 'pros_SINGLE_Controller@ACTION_setIsDriverLicenseCompleteToTrue')->name('pros_SINGLE-ACTION_setIsDriverLicenseCompleteToTrue');
  373. Route::get('ACTION_setIsDriverLicenseCompleteToFalse', 'pros_SINGLE_Controller@ACTION_setIsDriverLicenseCompleteToFalse')->name('pros_SINGLE-ACTION_setIsDriverLicenseCompleteToFalse');
  374. Route::get('ACTION_setIsSsnCompleteToTrue', 'pros_SINGLE_Controller@ACTION_setIsSsnCompleteToTrue')->name('pros_SINGLE-ACTION_setIsSsnCompleteToTrue');
  375. Route::get('ACTION_setIsSsnCompleteToFalse', 'pros_SINGLE_Controller@ACTION_setIsSsnCompleteToFalse')->name('pros_SINGLE-ACTION_setIsSsnCompleteToFalse');
  376. Route::get('ACTION_setProType', 'pros_SINGLE_Controller@ACTION_setProType')->name('pros_SINGLE-ACTION_setProType');
  377. Route::get('ACTION_setInitiative', 'pros_SINGLE_Controller@ACTION_setInitiative')->name('pros_SINGLE-ACTION_setInitiative');
  378. Route::get('ACTION_putSlug', 'pros_SINGLE_Controller@ACTION_putSlug')->name('pros_SINGLE-ACTION_putSlug');
  379. Route::get('ACTION_updateProfileImage', 'pros_SINGLE_Controller@ACTION_updateProfileImage')->name('pros_SINGLE-ACTION_updateProfileImage');
  380. Route::get('ACTION_updateProfileData', 'pros_SINGLE_Controller@ACTION_updateProfileData')->name('pros_SINGLE-ACTION_updateProfileData');
  381. Route::get('ACTION_putProMemo', 'pros_SINGLE_Controller@ACTION_putProMemo')->name('pros_SINGLE-ACTION_putProMemo');
  382. Route::get('ACTION_putCompany', 'pros_SINGLE_Controller@ACTION_putCompany')->name('pros_SINGLE-ACTION_putCompany');
  383. Route::get('SUB_dashboard', 'pros_SINGLE_Controller@SUB_dashboard')->name('pros_SINGLE-SUB_dashboard');
  384. Route::get('SUB_pro_rates', 'pros_SINGLE_Controller@SUB_pro_rates')->name('pros_SINGLE-SUB_pro_rates');
  385. Route::get('SUB_note_templates', 'pros_SINGLE_Controller@SUB_note_templates')->name('pros_SINGLE-SUB_note_templates');
  386. Route::get('SUB_companies', 'pros_SINGLE_Controller@SUB_companies')->name('pros_SINGLE-SUB_companies');
  387. Route::get('SUB_clients', 'pros_SINGLE_Controller@SUB_clients')->name('pros_SINGLE-SUB_clients');
  388. Route::get('SUB_pro_access', 'pros_SINGLE_Controller@SUB_pro_access')->name('pros_SINGLE-SUB_pro_access');
  389. Route::get('SUB_mcp_updates', 'pros_SINGLE_Controller@SUB_mcp_updates')->name('pros_SINGLE-SUB_mcp_updates');
  390. Route::get('SUB_erx', 'pros_SINGLE_Controller@SUB_erx')->name('pros_SINGLE-SUB_erx');
  391. Route::get('SUB_action_items', 'pros_SINGLE_Controller@SUB_action_items')->name('pros_SINGLE-SUB_action_items');
  392. Route::get('SUB_care_months', 'pros_SINGLE_Controller@SUB_care_months')->name('pros_SINGLE-SUB_care_months');
  393. Route::get('SUB_care_month_entries', 'pros_SINGLE_Controller@SUB_care_month_entries')->name('pros_SINGLE-SUB_care_month_entries');
  394. Route::get('SUB_notes', 'pros_SINGLE_Controller@SUB_notes')->name('pros_SINGLE-SUB_notes');
  395. Route::get('SUB_bills', 'pros_SINGLE_Controller@SUB_bills')->name('pros_SINGLE-SUB_bills');
  396. Route::get('SUB_transactions', 'pros_SINGLE_Controller@SUB_transactions')->name('pros_SINGLE-SUB_transactions');
  397. Route::get('SUB_sessions', 'pros_SINGLE_Controller@SUB_sessions')->name('pros_SINGLE-SUB_sessions');
  398. Route::get('SUB_app_access', 'pros_SINGLE_Controller@SUB_app_access')->name('pros_SINGLE-SUB_app_access');
  399. Route::get('SUB_audit_log', 'pros_SINGLE_Controller@SUB_audit_log')->name('pros_SINGLE-SUB_audit_log');
  400. Route::get('ACTION_add_new_pro_rate', 'pros_SINGLE_Controller@ACTION_add_new_pro_rate')->name('pros_SINGLE-ACTION_add_new_pro_rate');
  401. Route::get('ACTION_add_new_note_template_pro', 'pros_SINGLE_Controller@ACTION_add_new_note_template_pro')->name('pros_SINGLE-ACTION_add_new_note_template_pro');
  402. Route::get('ACTION_add_new_company_pro', 'pros_SINGLE_Controller@ACTION_add_new_company_pro')->name('pros_SINGLE-ACTION_add_new_company_pro');
  403. Route::get('ACTION_add_new_pro_pro_access', 'pros_SINGLE_Controller@ACTION_add_new_pro_pro_access')->name('pros_SINGLE-ACTION_add_new_pro_pro_access');
  404. Route::get('ACTION_add_new_credit_pro_transaction', 'pros_SINGLE_Controller@ACTION_add_new_credit_pro_transaction')->name('pros_SINGLE-ACTION_add_new_credit_pro_transaction');
  405. Route::get('ACTION_add_new_debit_pro_transaction', 'pros_SINGLE_Controller@ACTION_add_new_debit_pro_transaction')->name('pros_SINGLE-ACTION_add_new_debit_pro_transaction');
  406. Route::get('ACTION_add_new_stag_app_pro_access', 'pros_SINGLE_Controller@ACTION_add_new_stag_app_pro_access')->name('pros_SINGLE-ACTION_add_new_stag_app_pro_access');
  407. });
  408. // --- admin: pro_rates --- //
  409. Route::prefix('/pro_rates')->group(function () {
  410. Route::get('', 'pro_rates_Controller@index')->name('pro_rates-index');
  411. Route::get('view/{uid}', 'pro_rates_Controller@view')->name('pro_rates-view');
  412. });
  413. // --- admin: pro_rates_SINGLE --- //
  414. Route::prefix('/pro_rates/view/{uid}')->group(function () {
  415. Route::get('ACTION_updateAmount', 'pro_rates_SINGLE_Controller@ACTION_updateAmount')->name('pro_rates_SINGLE-ACTION_updateAmount');
  416. Route::get('ACTION_reactivate', 'pro_rates_SINGLE_Controller@ACTION_reactivate')->name('pro_rates_SINGLE-ACTION_reactivate');
  417. Route::get('ACTION_deactivate', 'pro_rates_SINGLE_Controller@ACTION_deactivate')->name('pro_rates_SINGLE-ACTION_deactivate');
  418. Route::get('SUB_dashboard', 'pro_rates_SINGLE_Controller@SUB_dashboard')->name('pro_rates_SINGLE-SUB_dashboard');
  419. });
  420. // --- admin: pro_pro_access --- //
  421. Route::prefix('/pro_pro_access')->group(function () {
  422. Route::get('', 'pro_pro_access_Controller@index')->name('pro_pro_access-index');
  423. Route::get('view/{uid}', 'pro_pro_access_Controller@view')->name('pro_pro_access-view');
  424. });
  425. // --- admin: pro_pro_access_SINGLE --- //
  426. Route::prefix('/pro_pro_access/view/{uid}')->group(function () {
  427. Route::get('ACTION_update', 'pro_pro_access_SINGLE_Controller@ACTION_update')->name('pro_pro_access_SINGLE-ACTION_update');
  428. Route::get('ACTION_reactivate', 'pro_pro_access_SINGLE_Controller@ACTION_reactivate')->name('pro_pro_access_SINGLE-ACTION_reactivate');
  429. Route::get('ACTION_deactivate', 'pro_pro_access_SINGLE_Controller@ACTION_deactivate')->name('pro_pro_access_SINGLE-ACTION_deactivate');
  430. Route::get('SUB_dashboard', 'pro_pro_access_SINGLE_Controller@SUB_dashboard')->name('pro_pro_access_SINGLE-SUB_dashboard');
  431. });
  432. // --- admin: client_pro_access --- //
  433. Route::prefix('/client_pro_access')->group(function () {
  434. Route::get('', 'client_pro_access_Controller@index')->name('client_pro_access-index');
  435. Route::get('view/{uid}', 'client_pro_access_Controller@view')->name('client_pro_access-view');
  436. });
  437. // --- admin: client_pro_access_SINGLE --- //
  438. Route::prefix('/client_pro_access/view/{uid}')->group(function () {
  439. Route::get('ACTION_updateReason', 'client_pro_access_SINGLE_Controller@ACTION_updateReason')->name('client_pro_access_SINGLE-ACTION_updateReason');
  440. Route::get('ACTION_deactivate', 'client_pro_access_SINGLE_Controller@ACTION_deactivate')->name('client_pro_access_SINGLE-ACTION_deactivate');
  441. Route::get('ACTION_updateDeactivationMemo', 'client_pro_access_SINGLE_Controller@ACTION_updateDeactivationMemo')->name('client_pro_access_SINGLE-ACTION_updateDeactivationMemo');
  442. Route::get('ACTION_reactivate', 'client_pro_access_SINGLE_Controller@ACTION_reactivate')->name('client_pro_access_SINGLE-ACTION_reactivate');
  443. Route::get('ACTION_updateReactivationMemo', 'client_pro_access_SINGLE_Controller@ACTION_updateReactivationMemo')->name('client_pro_access_SINGLE-ACTION_updateReactivationMemo');
  444. Route::get('SUB_dashboard', 'client_pro_access_SINGLE_Controller@SUB_dashboard')->name('client_pro_access_SINGLE-SUB_dashboard');
  445. });
  446. // --- admin: section_templates --- //
  447. Route::prefix('/section_templates')->group(function () {
  448. Route::get('', 'section_templates_Controller@index')->name('section_templates-index');
  449. Route::get('add_new', 'section_templates_Controller@add_new')->name('section_templates-add_new');
  450. Route::get('view/{uid}', 'section_templates_Controller@view')->name('section_templates-view');
  451. });
  452. // --- admin: section_templates_SINGLE --- //
  453. Route::prefix('/section_templates/view/{uid}')->group(function () {
  454. Route::get('ACTION_changePositionIndex', 'section_templates_SINGLE_Controller@ACTION_changePositionIndex')->name('section_templates_SINGLE-ACTION_changePositionIndex');
  455. Route::get('ACTION_setIsCanvasToTrue', 'section_templates_SINGLE_Controller@ACTION_setIsCanvasToTrue')->name('section_templates_SINGLE-ACTION_setIsCanvasToTrue');
  456. Route::get('ACTION_setIsCanvasToFalse', 'section_templates_SINGLE_Controller@ACTION_setIsCanvasToFalse')->name('section_templates_SINGLE-ACTION_setIsCanvasToFalse');
  457. Route::get('SUB_dashboard', 'section_templates_SINGLE_Controller@SUB_dashboard')->name('section_templates_SINGLE-SUB_dashboard');
  458. });
  459. // --- admin: note_templates --- //
  460. Route::prefix('/note_templates')->group(function () {
  461. Route::get('', 'note_templates_Controller@index')->name('note_templates-index');
  462. Route::get('add_new', 'note_templates_Controller@add_new')->name('note_templates-add_new');
  463. Route::get('view/{uid}', 'note_templates_Controller@view')->name('note_templates-view');
  464. });
  465. // --- admin: note_templates_SINGLE --- //
  466. Route::prefix('/note_templates/view/{uid}')->group(function () {
  467. Route::get('ACTION_updateBasic', 'note_templates_SINGLE_Controller@ACTION_updateBasic')->name('note_templates_SINGLE-ACTION_updateBasic');
  468. Route::get('SUB_dashboard', 'note_templates_SINGLE_Controller@SUB_dashboard')->name('note_templates_SINGLE-SUB_dashboard');
  469. Route::get('SUB_note_template_section_templates', 'note_templates_SINGLE_Controller@SUB_note_template_section_templates')->name('note_templates_SINGLE-SUB_note_template_section_templates');
  470. Route::get('ACTION_add_new_note_template_section_template', 'note_templates_SINGLE_Controller@ACTION_add_new_note_template_section_template')->name('note_templates_SINGLE-ACTION_add_new_note_template_section_template');
  471. });
  472. // --- admin: invitations --- //
  473. Route::prefix('/invitations')->group(function () {
  474. Route::get('', 'invitations_Controller@index')->name('invitations-index');
  475. Route::get('add_new', 'invitations_Controller@add_new')->name('invitations-add_new');
  476. Route::get('view/{uid}', 'invitations_Controller@view')->name('invitations-view');
  477. });
  478. // --- admin: invitations_SINGLE --- //
  479. Route::prefix('/invitations/view/{uid}')->group(function () {
  480. Route::get('ACTION_deactivate', 'invitations_SINGLE_Controller@ACTION_deactivate')->name('invitations_SINGLE-ACTION_deactivate');
  481. Route::get('ACTION_reactivate', 'invitations_SINGLE_Controller@ACTION_reactivate')->name('invitations_SINGLE-ACTION_reactivate');
  482. Route::get('ACTION_sendEmail', 'invitations_SINGLE_Controller@ACTION_sendEmail')->name('invitations_SINGLE-ACTION_sendEmail');
  483. Route::get('ACTION_sendSms', 'invitations_SINGLE_Controller@ACTION_sendSms')->name('invitations_SINGLE-ACTION_sendSms');
  484. Route::get('ACTION_putMedicareInfoAsGuest', 'invitations_SINGLE_Controller@ACTION_putMedicareInfoAsGuest')->name('invitations_SINGLE-ACTION_putMedicareInfoAsGuest');
  485. Route::get('ACTION_updateBasic', 'invitations_SINGLE_Controller@ACTION_updateBasic')->name('invitations_SINGLE-ACTION_updateBasic');
  486. Route::get('SUB_dashboard', 'invitations_SINGLE_Controller@SUB_dashboard')->name('invitations_SINGLE-SUB_dashboard');
  487. });
  488. // --- admin: client_smses --- //
  489. Route::prefix('/client_smses')->group(function () {
  490. Route::get('', 'client_smses_Controller@index')->name('client_smses-index');
  491. Route::get('view/{uid}', 'client_smses_Controller@view')->name('client_smses-view');
  492. });
  493. // --- admin: client_smses_SINGLE --- //
  494. Route::prefix('/client_smses/view/{uid}')->group(function () {
  495. Route::get('ACTION_assignIncomingSmsToClient', 'client_smses_SINGLE_Controller@ACTION_assignIncomingSmsToClient')->name('client_smses_SINGLE-ACTION_assignIncomingSmsToClient');
  496. Route::get('SUB_dashboard', 'client_smses_SINGLE_Controller@SUB_dashboard')->name('client_smses_SINGLE-SUB_dashboard');
  497. });
  498. // --- admin: client_documents --- //
  499. Route::prefix('/client_documents')->group(function () {
  500. Route::get('', 'client_documents_Controller@index')->name('client_documents-index');
  501. Route::get('view/{uid}', 'client_documents_Controller@view')->name('client_documents-view');
  502. });
  503. // --- admin: client_documents_SINGLE --- //
  504. Route::prefix('/client_documents/view/{uid}')->group(function () {
  505. Route::get('ACTION_updateBasic', 'client_documents_SINGLE_Controller@ACTION_updateBasic')->name('client_documents_SINGLE-ACTION_updateBasic');
  506. Route::get('SUB_dashboard', 'client_documents_SINGLE_Controller@SUB_dashboard')->name('client_documents_SINGLE-SUB_dashboard');
  507. });
  508. // --- admin: handouts --- //
  509. Route::prefix('/handouts')->group(function () {
  510. Route::get('', 'handouts_Controller@index')->name('handouts-index');
  511. Route::get('add_new', 'handouts_Controller@add_new')->name('handouts-add_new');
  512. Route::get('view/{uid}', 'handouts_Controller@view')->name('handouts-view');
  513. });
  514. // --- admin: handouts_SINGLE --- //
  515. Route::prefix('/handouts/view/{uid}')->group(function () {
  516. Route::get('ACTION_updateBasic', 'handouts_SINGLE_Controller@ACTION_updateBasic')->name('handouts_SINGLE-ACTION_updateBasic');
  517. Route::get('SUB_dashboard', 'handouts_SINGLE_Controller@SUB_dashboard')->name('handouts_SINGLE-SUB_dashboard');
  518. });
  519. // --- admin: bdt_devices --- //
  520. Route::prefix('/bdt_devices')->group(function () {
  521. Route::get('', 'bdt_devices_Controller@index')->name('bdt_devices-index');
  522. Route::get('add_new', 'bdt_devices_Controller@add_new')->name('bdt_devices-add_new');
  523. Route::get('view/{uid}', 'bdt_devices_Controller@view')->name('bdt_devices-view');
  524. });
  525. // --- admin: bdt_devices_SINGLE --- //
  526. Route::prefix('/bdt_devices/view/{uid}')->group(function () {
  527. Route::get('ACTION_deactivate', 'bdt_devices_SINGLE_Controller@ACTION_deactivate')->name('bdt_devices_SINGLE-ACTION_deactivate');
  528. Route::get('ACTION_reactivate', 'bdt_devices_SINGLE_Controller@ACTION_reactivate')->name('bdt_devices_SINGLE-ACTION_reactivate');
  529. Route::get('ACTION_update', 'bdt_devices_SINGLE_Controller@ACTION_update')->name('bdt_devices_SINGLE-ACTION_update');
  530. Route::get('SUB_dashboard', 'bdt_devices_SINGLE_Controller@SUB_dashboard')->name('bdt_devices_SINGLE-SUB_dashboard');
  531. });
  532. // --- admin: client_bdt_devices --- //
  533. Route::prefix('/client_bdt_devices')->group(function () {
  534. Route::get('', 'client_bdt_devices_Controller@index')->name('client_bdt_devices-index');
  535. Route::get('add_new', 'client_bdt_devices_Controller@add_new')->name('client_bdt_devices-add_new');
  536. Route::get('view/{uid}', 'client_bdt_devices_Controller@view')->name('client_bdt_devices-view');
  537. });
  538. // --- admin: client_bdt_devices_SINGLE --- //
  539. Route::prefix('/client_bdt_devices/view/{uid}')->group(function () {
  540. Route::get('ACTION_deactivate', 'client_bdt_devices_SINGLE_Controller@ACTION_deactivate')->name('client_bdt_devices_SINGLE-ACTION_deactivate');
  541. Route::get('ACTION_reactivate', 'client_bdt_devices_SINGLE_Controller@ACTION_reactivate')->name('client_bdt_devices_SINGLE-ACTION_reactivate');
  542. Route::get('ACTION_update', 'client_bdt_devices_SINGLE_Controller@ACTION_update')->name('client_bdt_devices_SINGLE-ACTION_update');
  543. Route::get('SUB_dashboard', 'client_bdt_devices_SINGLE_Controller@SUB_dashboard')->name('client_bdt_devices_SINGLE-SUB_dashboard');
  544. });
  545. // --- admin: bdt_measurements --- //
  546. Route::prefix('/bdt_measurements')->group(function () {
  547. Route::get('', 'bdt_measurements_Controller@index')->name('bdt_measurements-index');
  548. Route::get('add_new', 'bdt_measurements_Controller@add_new')->name('bdt_measurements-add_new');
  549. });
  550. // --- admin: stag_apps --- //
  551. Route::prefix('/stag_apps')->group(function () {
  552. Route::get('', 'stag_apps_Controller@index')->name('stag_apps-index');
  553. Route::get('add_new', 'stag_apps_Controller@add_new')->name('stag_apps-add_new');
  554. Route::get('view/{uid}', 'stag_apps_Controller@view')->name('stag_apps-view');
  555. });
  556. // --- admin: stag_apps_SINGLE --- //
  557. Route::prefix('/stag_apps/view/{uid}')->group(function () {
  558. Route::get('ACTION_deactivate', 'stag_apps_SINGLE_Controller@ACTION_deactivate')->name('stag_apps_SINGLE-ACTION_deactivate');
  559. Route::get('ACTION_reactivate', 'stag_apps_SINGLE_Controller@ACTION_reactivate')->name('stag_apps_SINGLE-ACTION_reactivate');
  560. Route::get('ACTION_update', 'stag_apps_SINGLE_Controller@ACTION_update')->name('stag_apps_SINGLE-ACTION_update');
  561. Route::get('SUB_dashboard', 'stag_apps_SINGLE_Controller@SUB_dashboard')->name('stag_apps_SINGLE-SUB_dashboard');
  562. });
  563. // --- admin: stag_app_pro_access --- //
  564. Route::prefix('/stag_app_pro_access')->group(function () {
  565. Route::get('', 'stag_app_pro_access_Controller@index')->name('stag_app_pro_access-index');
  566. Route::get('view/{uid}', 'stag_app_pro_access_Controller@view')->name('stag_app_pro_access-view');
  567. });
  568. // --- admin: stag_app_pro_access_SINGLE --- //
  569. Route::prefix('/stag_app_pro_access/view/{uid}')->group(function () {
  570. Route::get('ACTION_deactivate', 'stag_app_pro_access_SINGLE_Controller@ACTION_deactivate')->name('stag_app_pro_access_SINGLE-ACTION_deactivate');
  571. Route::get('ACTION_reactivate', 'stag_app_pro_access_SINGLE_Controller@ACTION_reactivate')->name('stag_app_pro_access_SINGLE-ACTION_reactivate');
  572. Route::get('ACTION_updateMemo', 'stag_app_pro_access_SINGLE_Controller@ACTION_updateMemo')->name('stag_app_pro_access_SINGLE-ACTION_updateMemo');
  573. Route::get('SUB_dashboard', 'stag_app_pro_access_SINGLE_Controller@SUB_dashboard')->name('stag_app_pro_access_SINGLE-SUB_dashboard');
  574. });
  575. // --- admin: mb_practice --- //
  576. Route::prefix('/mb_practice')->group(function () {
  577. Route::get('', 'mb_practice_Controller@index')->name('mb_practice-index');
  578. Route::get('view/{uid}', 'mb_practice_Controller@view')->name('mb_practice-view');
  579. });
  580. // --- admin: mb_practice_SINGLE --- //
  581. Route::prefix('/mb_practice/view/{uid}')->group(function () {
  582. Route::get('ACTION_update', 'mb_practice_SINGLE_Controller@ACTION_update')->name('mb_practice_SINGLE-ACTION_update');
  583. Route::get('ACTION_deactivate', 'mb_practice_SINGLE_Controller@ACTION_deactivate')->name('mb_practice_SINGLE-ACTION_deactivate');
  584. Route::get('ACTION_reactivate', 'mb_practice_SINGLE_Controller@ACTION_reactivate')->name('mb_practice_SINGLE-ACTION_reactivate');
  585. Route::get('SUB_dashboard', 'mb_practice_SINGLE_Controller@SUB_dashboard')->name('mb_practice_SINGLE-SUB_dashboard');
  586. });
  587. // --- admin: mb_payer --- //
  588. Route::prefix('/mb_payer')->group(function () {
  589. Route::get('', 'mb_payer_Controller@index')->name('mb_payer-index');
  590. Route::get('view/{uid}', 'mb_payer_Controller@view')->name('mb_payer-view');
  591. });
  592. // --- admin: mb_client --- //
  593. Route::prefix('/mb_client')->group(function () {
  594. Route::get('', 'mb_client_Controller@index')->name('mb_client-index');
  595. Route::get('view/{uid}', 'mb_client_Controller@view')->name('mb_client-view');
  596. });
  597. // --- admin: mb_pro --- //
  598. Route::prefix('/mb_pro')->group(function () {
  599. Route::get('', 'mb_pro_Controller@index')->name('mb_pro-index');
  600. Route::get('view/{uid}', 'mb_pro_Controller@view')->name('mb_pro-view');
  601. });
  602. // --- admin: mb_claim --- //
  603. Route::prefix('/mb_claim')->group(function () {
  604. Route::get('', 'mb_claim_Controller@index')->name('mb_claim-index');
  605. Route::get('view/{uid}', 'mb_claim_Controller@view')->name('mb_claim-view');
  606. });
  607. // --- admin: companies --- //
  608. Route::prefix('/companies')->group(function () {
  609. Route::get('', 'companies_Controller@index')->name('companies-index');
  610. Route::get('add_new', 'companies_Controller@add_new')->name('companies-add_new');
  611. Route::get('view/{uid}', 'companies_Controller@view')->name('companies-view');
  612. });
  613. // --- admin: companies_SINGLE --- //
  614. Route::prefix('/companies/view/{uid}')->group(function () {
  615. Route::get('ACTION_deactivate', 'companies_SINGLE_Controller@ACTION_deactivate')->name('companies_SINGLE-ACTION_deactivate');
  616. Route::get('ACTION_reactivate', 'companies_SINGLE_Controller@ACTION_reactivate')->name('companies_SINGLE-ACTION_reactivate');
  617. Route::get('ACTION_updateBasic', 'companies_SINGLE_Controller@ACTION_updateBasic')->name('companies_SINGLE-ACTION_updateBasic');
  618. Route::get('SUB_dashboard', 'companies_SINGLE_Controller@SUB_dashboard')->name('companies_SINGLE-SUB_dashboard');
  619. });
  620. // --- admin: accounts --- //
  621. Route::prefix('/accounts')->group(function () {
  622. Route::get('', 'accounts_Controller@index')->name('accounts-index');
  623. Route::get('view/{uid}', 'accounts_Controller@view')->name('accounts-view');
  624. });
  625. // --- admin: accounts_SINGLE --- //
  626. Route::prefix('/accounts/view/{uid}')->group(function () {
  627. Route::get('ACTION_deactivate', 'accounts_SINGLE_Controller@ACTION_deactivate')->name('accounts_SINGLE-ACTION_deactivate');
  628. Route::get('ACTION_reactivate', 'accounts_SINGLE_Controller@ACTION_reactivate')->name('accounts_SINGLE-ACTION_reactivate');
  629. Route::get('SUB_dashboard', 'accounts_SINGLE_Controller@SUB_dashboard')->name('accounts_SINGLE-SUB_dashboard');
  630. Route::get('SUB_clients', 'accounts_SINGLE_Controller@SUB_clients')->name('accounts_SINGLE-SUB_clients');
  631. });
  632. // --- admin: account_clients --- //
  633. Route::prefix('/account_clients')->group(function () {
  634. Route::get('', 'account_clients_Controller@index')->name('account_clients-index');
  635. Route::get('view/{uid}', 'account_clients_Controller@view')->name('account_clients-view');
  636. });
  637. // --- admin: account_clients_SINGLE --- //
  638. Route::prefix('/account_clients/view/{uid}')->group(function () {
  639. Route::get('ACTION_proAllowAccess', 'account_clients_SINGLE_Controller@ACTION_proAllowAccess')->name('account_clients_SINGLE-ACTION_proAllowAccess');
  640. Route::get('ACTION_proDenyAccess', 'account_clients_SINGLE_Controller@ACTION_proDenyAccess')->name('account_clients_SINGLE-ACTION_proDenyAccess');
  641. Route::get('SUB_dashboard', 'account_clients_SINGLE_Controller@SUB_dashboard')->name('account_clients_SINGLE-SUB_dashboard');
  642. });
  643. // --- admin: products --- //
  644. Route::prefix('/products')->group(function () {
  645. Route::get('', 'products_Controller@index')->name('products-index');
  646. Route::get('add_new', 'products_Controller@add_new')->name('products-add_new');
  647. Route::get('view/{uid}', 'products_Controller@view')->name('products-view');
  648. });
  649. // --- admin: products_SINGLE --- //
  650. Route::prefix('/products/view/{uid}')->group(function () {
  651. Route::get('ACTION_update', 'products_SINGLE_Controller@ACTION_update')->name('products_SINGLE-ACTION_update');
  652. Route::get('ACTION_deactivate', 'products_SINGLE_Controller@ACTION_deactivate')->name('products_SINGLE-ACTION_deactivate');
  653. Route::get('ACTION_updateDeactivationMemo', 'products_SINGLE_Controller@ACTION_updateDeactivationMemo')->name('products_SINGLE-ACTION_updateDeactivationMemo');
  654. Route::get('ACTION_reactivate', 'products_SINGLE_Controller@ACTION_reactivate')->name('products_SINGLE-ACTION_reactivate');
  655. Route::get('ACTION_updateReactivationMemo', 'products_SINGLE_Controller@ACTION_updateReactivationMemo')->name('products_SINGLE-ACTION_updateReactivationMemo');
  656. Route::get('SUB_dashboard', 'products_SINGLE_Controller@SUB_dashboard')->name('products_SINGLE-SUB_dashboard');
  657. Route::get('SUB_versions', 'products_SINGLE_Controller@SUB_versions')->name('products_SINGLE-SUB_versions');
  658. });
  659. // --- admin: company_pros --- //
  660. Route::prefix('/company_pros')->group(function () {
  661. Route::get('', 'company_pros_Controller@index')->name('company_pros-index');
  662. Route::get('view/{uid}', 'company_pros_Controller@view')->name('company_pros-view');
  663. });
  664. // --- admin: company_pros_SINGLE --- //
  665. Route::prefix('/company_pros/view/{uid}')->group(function () {
  666. Route::get('ACTION_deactivate', 'company_pros_SINGLE_Controller@ACTION_deactivate')->name('company_pros_SINGLE-ACTION_deactivate');
  667. Route::get('ACTION_updateDeactivationMemo', 'company_pros_SINGLE_Controller@ACTION_updateDeactivationMemo')->name('company_pros_SINGLE-ACTION_updateDeactivationMemo');
  668. Route::get('ACTION_reactivate', 'company_pros_SINGLE_Controller@ACTION_reactivate')->name('company_pros_SINGLE-ACTION_reactivate');
  669. Route::get('ACTION_updateReactivationMemo', 'company_pros_SINGLE_Controller@ACTION_updateReactivationMemo')->name('company_pros_SINGLE-ACTION_updateReactivationMemo');
  670. Route::get('SUB_dashboard', 'company_pros_SINGLE_Controller@SUB_dashboard')->name('company_pros_SINGLE-SUB_dashboard');
  671. });
  672. // --- admin: pro_teams --- //
  673. Route::prefix('/pro_teams')->group(function () {
  674. Route::get('', 'pro_teams_Controller@index')->name('pro_teams-index');
  675. Route::get('add_new', 'pro_teams_Controller@add_new')->name('pro_teams-add_new');
  676. Route::get('view/{uid}', 'pro_teams_Controller@view')->name('pro_teams-view');
  677. });
  678. // --- admin: pro_teams_SINGLE --- //
  679. Route::prefix('/pro_teams/view/{uid}')->group(function () {
  680. Route::get('ACTION_updateBasic', 'pro_teams_SINGLE_Controller@ACTION_updateBasic')->name('pro_teams_SINGLE-ACTION_updateBasic');
  681. Route::get('ACTION_deactivate', 'pro_teams_SINGLE_Controller@ACTION_deactivate')->name('pro_teams_SINGLE-ACTION_deactivate');
  682. Route::get('ACTION_reactivate', 'pro_teams_SINGLE_Controller@ACTION_reactivate')->name('pro_teams_SINGLE-ACTION_reactivate');
  683. Route::get('SUB_dashboard', 'pro_teams_SINGLE_Controller@SUB_dashboard')->name('pro_teams_SINGLE-SUB_dashboard');
  684. });
  685. // --- admin: pro_text_shortcuts --- //
  686. Route::prefix('/pro_text_shortcuts')->group(function () {
  687. Route::get('', 'pro_text_shortcuts_Controller@index')->name('pro_text_shortcuts-index');
  688. Route::get('add_new', 'pro_text_shortcuts_Controller@add_new')->name('pro_text_shortcuts-add_new');
  689. Route::get('view/{uid}', 'pro_text_shortcuts_Controller@view')->name('pro_text_shortcuts-view');
  690. });
  691. // --- admin: pro_text_shortcuts_SINGLE --- //
  692. Route::prefix('/pro_text_shortcuts/view/{uid}')->group(function () {
  693. Route::get('ACTION_update', 'pro_text_shortcuts_SINGLE_Controller@ACTION_update')->name('pro_text_shortcuts_SINGLE-ACTION_update');
  694. Route::get('ACTION_remove', 'pro_text_shortcuts_SINGLE_Controller@ACTION_remove')->name('pro_text_shortcuts_SINGLE-ACTION_remove');
  695. Route::get('SUB_dashboard', 'pro_text_shortcuts_SINGLE_Controller@SUB_dashboard')->name('pro_text_shortcuts_SINGLE-SUB_dashboard');
  696. });
  697. // --- admin: note_template_section_templates_SINGLE --- //
  698. Route::prefix('/note_template_section_templates/view/{uid}')->group(function () {
  699. Route::get('ACTION_updateHeading', 'note_template_section_templates_SINGLE_Controller@ACTION_updateHeading')->name('note_template_section_templates_SINGLE-ACTION_updateHeading');
  700. Route::get('SUB_dashboard', 'note_template_section_templates_SINGLE_Controller@SUB_dashboard')->name('note_template_section_templates_SINGLE-SUB_dashboard');
  701. });
  702. // --- admin: note_template_section_templates --- //
  703. Route::prefix('/note_template_section_templates')->group(function () {
  704. Route::get('', 'note_template_section_templates_Controller@index')->name('note_template_section_templates-index');
  705. Route::get('view/{uid}', 'note_template_section_templates_Controller@view')->name('note_template_section_templates-view');
  706. });