generated.php 66 KB

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