index.blade.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <a href="{{route('pro-create')}}">Add new</a>
  11. <table>
  12. <thead>
  13. <tr>
  14. <th>id</th>
  15. <th>balance</th>
  16. <th>cell_number</th>
  17. <th>cell_number_confirmation_token</th>
  18. <th>cell_number_confirmed_at</th>
  19. <th>current_profession_category</th>
  20. <th>driver_license_expiration_date</th>
  21. <th>driver_license_file_path</th>
  22. <th>driver_license_issue_date</th>
  23. <th>driver_license_state</th>
  24. <th>email_address</th>
  25. <th>email_address_confirmation_token</th>
  26. <th>email_address_confirmed_at</th>
  27. <th>enrolled_hcp_category</th>
  28. <th>enrolled_hcp_npi</th>
  29. <th>enrolled_hcp_subcategory</th>
  30. <th>hcp_category</th>
  31. <th>hcp_npi</th>
  32. <th>hcp_subcategory</th>
  33. <th>home_address_city</th>
  34. <th>home_address_country</th>
  35. <th>home_address_lat</th>
  36. <th>home_address_line1</th>
  37. <th>home_address_line2</th>
  38. <th>home_address_long</th>
  39. <th>home_address_state</th>
  40. <th>home_address_zip</th>
  41. <th>home_phone_number</th>
  42. <th>is_cell_number_confirmation_pending</th>
  43. <th>is_cell_number_confirmed</th>
  44. <th>is_email_address_confirmation_pending</th>
  45. <th>is_email_address_confirmed</th>
  46. <th>is_enrolled_as_hcp</th>
  47. <th>is_enrolled_as_mcp</th>
  48. <th>is_hcp</th>
  49. <th>mailing_address_city</th>
  50. <th>mailing_address_country</th>
  51. <th>mailing_address_lat</th>
  52. <th>mailing_address_line1</th>
  53. <th>mailing_address_line2</th>
  54. <th>mailing_address_long</th>
  55. <th>mailing_address_state</th>
  56. <th>mailing_address_zip</th>
  57. <th>name_credential</th>
  58. <th>name_display</th>
  59. <th>name_first</th>
  60. <th>name_last</th>
  61. <th>name_middle</th>
  62. <th>name_prefix</th>
  63. <th>name_suffix</th>
  64. <th>payment_processing_detail</th>
  65. <th>phone_numbers_memo</th>
  66. <th>previous_profession_category</th>
  67. <th>pro_type</th>
  68. <th>profile_picture_base64</th>
  69. <th>ssn</th>
  70. <th>supporter_memo</th>
  71. <th>supporter_phone_number</th>
  72. <th>w9detail</th>
  73. <th>work_phone_number</th>
  74. <th>created_at</th>
  75. <th>uid</th>
  76. <th>created_by_session_id</th>
  77. <th>is_two_step_sms_auth_completed</th>
  78. <th>is_two_step_sms_auth_pending</th>
  79. <th>two_step_sms_auth_completed_at</th>
  80. <th>two_step_sms_auth_token</th>
  81. <th>two_step_sms_auth_token_sent_at</th>
  82. <th>is_sms_auth_pending</th>
  83. <th>sms_auth_completed</th>
  84. <th>sms_auth_completed_at</th>
  85. <th>sms_auth_token</th>
  86. <th>sms_auth_token_sent_at</th>
  87. <th>deactivated_at</th>
  88. <th>deactivation_memo</th>
  89. <th>reactivated_at</th>
  90. <th>reactivation_memo</th>
  91. <th>deactivated_by_id</th>
  92. <th>reactivated_by_id</th>
  93. <th>is_active</th>
  94. </tr>
  95. </thead>
  96. <tbody>
  97. @foreach($pros as $pro)
  98. <tr>
  99. <td>{{$pro->id}}</td>
  100. <td>{{$pro->balance}}</td>
  101. <td>{{$pro->cell_number}}</td>
  102. <td>{{$pro->cell_number_confirmation_token}}</td>
  103. <td>{{$pro->cell_number_confirmed_at}}</td>
  104. <td>{{$pro->current_profession_category}}</td>
  105. <td>{{$pro->driver_license_expiration_date}}</td>
  106. <td>{{$pro->driver_license_file_path}}</td>
  107. <td>{{$pro->driver_license_issue_date}}</td>
  108. <td>{{$pro->driver_license_state}}</td>
  109. <td>{{$pro->email_address}}</td>
  110. <td>{{$pro->email_address_confirmation_token}}</td>
  111. <td>{{$pro->email_address_confirmed_at}}</td>
  112. <td>{{$pro->enrolled_hcp_category}}</td>
  113. <td>{{$pro->enrolled_hcp_npi}}</td>
  114. <td>{{$pro->enrolled_hcp_subcategory}}</td>
  115. <td>{{$pro->hcp_category}}</td>
  116. <td>{{$pro->hcp_npi}}</td>
  117. <td>{{$pro->hcp_subcategory}}</td>
  118. <td>{{$pro->home_address_city}}</td>
  119. <td>{{$pro->home_address_country}}</td>
  120. <td>{{$pro->home_address_lat}}</td>
  121. <td>{{$pro->home_address_line1}}</td>
  122. <td>{{$pro->home_address_line2}}</td>
  123. <td>{{$pro->home_address_long}}</td>
  124. <td>{{$pro->home_address_state}}</td>
  125. <td>{{$pro->home_address_zip}}</td>
  126. <td>{{$pro->home_phone_number}}</td>
  127. <td>{{$pro->is_cell_number_confirmation_pending}}</td>
  128. <td>{{$pro->is_cell_number_confirmed}}</td>
  129. <td>{{$pro->is_email_address_confirmation_pending}}</td>
  130. <td>{{$pro->is_email_address_confirmed}}</td>
  131. <td>{{$pro->is_enrolled_as_hcp}}</td>
  132. <td>{{$pro->is_enrolled_as_mcp}}</td>
  133. <td>{{$pro->is_hcp}}</td>
  134. <td>{{$pro->mailing_address_city}}</td>
  135. <td>{{$pro->mailing_address_country}}</td>
  136. <td>{{$pro->mailing_address_lat}}</td>
  137. <td>{{$pro->mailing_address_line1}}</td>
  138. <td>{{$pro->mailing_address_line2}}</td>
  139. <td>{{$pro->mailing_address_long}}</td>
  140. <td>{{$pro->mailing_address_state}}</td>
  141. <td>{{$pro->mailing_address_zip}}</td>
  142. <td>{{$pro->name_credential}}</td>
  143. <td>{{$pro->name_display}}</td>
  144. <td>{{$pro->name_first}}</td>
  145. <td>{{$pro->name_last}}</td>
  146. <td>{{$pro->name_middle}}</td>
  147. <td>{{$pro->name_prefix}}</td>
  148. <td>{{$pro->name_suffix}}</td>
  149. <td>{{$pro->payment_processing_detail}}</td>
  150. <td>{{$pro->phone_numbers_memo}}</td>
  151. <td>{{$pro->previous_profession_category}}</td>
  152. <td>{{$pro->pro_type}}</td>
  153. <td>{{$pro->profile_picture_base64}}</td>
  154. <td>{{$pro->ssn}}</td>
  155. <td>{{$pro->supporter_memo}}</td>
  156. <td>{{$pro->supporter_phone_number}}</td>
  157. <td>{{$pro->w9detail}}</td>
  158. <td>{{$pro->work_phone_number}}</td>
  159. <td>{{$pro->created_at}}</td>
  160. <td>{{$pro->uid}}</td>
  161. <td>{{$pro->created_by_session_id}}</td>
  162. <td>{{$pro->is_two_step_sms_auth_completed}}</td>
  163. <td>{{$pro->is_two_step_sms_auth_pending}}</td>
  164. <td>{{$pro->two_step_sms_auth_completed_at}}</td>
  165. <td>{{$pro->two_step_sms_auth_token}}</td>
  166. <td>{{$pro->two_step_sms_auth_token_sent_at}}</td>
  167. <td>{{$pro->is_sms_auth_pending}}</td>
  168. <td>{{$pro->sms_auth_completed}}</td>
  169. <td>{{$pro->sms_auth_completed_at}}</td>
  170. <td>{{$pro->sms_auth_token}}</td>
  171. <td>{{$pro->sms_auth_token_sent_at}}</td>
  172. <td>{{$pro->deactivated_at}}</td>
  173. <td>{{$pro->deactivation_memo}}</td>
  174. <td>{{$pro->reactivated_at}}</td>
  175. <td>{{$pro->reactivation_memo}}</td>
  176. <td>{{$pro->deactivated_by_id}}</td>
  177. <td>{{$pro->reactivated_by_id}}</td>
  178. <td>{{$pro->is_active}}</td>
  179. </tr>
  180. @endforeach
  181. </tbody>
  182. </table>
  183. </body>
  184. </html>