|
@@ -15,8 +15,8 @@
|
|
<thead>
|
|
<thead>
|
|
<tr>
|
|
<tr>
|
|
<th> </th>
|
|
<th> </th>
|
|
-<th>Owner Pro Id</th>
|
|
|
|
-<th>Accessible Pro Id</th>
|
|
|
|
|
|
+<th>Owner Pro</th>
|
|
|
|
+<th>Accessible Pro</th>
|
|
<th>Memo</th>
|
|
<th>Memo</th>
|
|
<th>Can Assign As Rme</th>
|
|
<th>Can Assign As Rme</th>
|
|
<th>Can Assign As Rmm</th>
|
|
<th>Can Assign As Rmm</th>
|
|
@@ -38,8 +38,8 @@
|
|
@foreach($subRecords as $subRecord)
|
|
@foreach($subRecords as $subRecord)
|
|
<tr>
|
|
<tr>
|
|
<td><a href="/pro_access/view/{{ $subRecord->uid }}"><i class="fas fa-share-square"></i></a></td>
|
|
<td><a href="/pro_access/view/{{ $subRecord->uid }}"><i class="fas fa-share-square"></i></a></td>
|
|
-<td><?= $subRecord->owner_pro_id ?></td>
|
|
|
|
-<td><?= $subRecord->accessible_pro_id ?></td>
|
|
|
|
|
|
+<td><?= value_from_rs($result_pros, 'name_display', [['id', '=', $subRecord->owner_pro_id], ], 'all'); ?></td>
|
|
|
|
+<td><?= value_from_rs($result_pros, 'name_display', [['id', '=', $subRecord->accessible_pro_id], ], 'all'); ?></td>
|
|
<td><?= $subRecord->memo ?></td>
|
|
<td><?= $subRecord->memo ?></td>
|
|
<td><?= $subRecord->can_assign_as_rme ?></td>
|
|
<td><?= $subRecord->can_assign_as_rme ?></td>
|
|
<td><?= $subRecord->can_assign_as_rmm ?></td>
|
|
<td><?= $subRecord->can_assign_as_rmm ?></td>
|