|
@@ -15,6 +15,10 @@
|
|
|
<th> </th>
|
|
|
<th>First Name</th>
|
|
|
<th>Last Name</th>
|
|
|
+<th>Dob</th>
|
|
|
+<th> Mcn</th>
|
|
|
+<th>Is Mcn Valid Number</th>
|
|
|
+<th>Is Part B Primary</th>
|
|
|
<th>Sex</th>
|
|
|
<th>MCP</th>
|
|
|
<th>CM Pro</th>
|
|
@@ -28,6 +32,10 @@
|
|
|
<td><a href="/clients/view/<?= $record->uid ?>"><i class="fas fa-share-square"></i></a></td>
|
|
|
<td><a href="/clients/view/<?= $record->uid ?>/SUB_dashboard"><?= $record->name_first ?></a></td>
|
|
|
<td><?= $record->name_last ?></td>
|
|
|
+<td><?= $record->dob ?></td>
|
|
|
+<td><?= $record-> mcn ?></td>
|
|
|
+<td><?= $record->is_mcn_valid_number ?></td>
|
|
|
+<td><?= $record->is_part_b_primary ?></td>
|
|
|
<td><?= $record->sex ?></td>
|
|
|
<td><a href="/pros/view/<?= $record->mcp_pro_id ?>"><?= value_from_rs($result_pros, 'name_display', [['id', '=', $record->mcp_pro_id], ], 'all'); ?></a></td>
|
|
|
<td><a href="/pros/view/<?= $record->cm_pro_id ?>"><?= value_from_rs($result_pros, 'name_display', [['id', '=', $record->cm_pro_id], ], 'all'); ?></a></td>
|