|
@@ -13,7 +13,11 @@
|
|
|
<th class="border-0 text-secondary width-200px">Old Pro</th>
|
|
|
<th class="border-0 text-secondary width-200px">New Pro</th>
|
|
|
<th class="border-0 text-secondary width-200px">Change Memo</th>
|
|
|
- <th></th>
|
|
|
+ <th class="border-0 text-secondary">
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
+ Created By
|
|
|
+ @endif
|
|
|
+ </th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -24,7 +28,11 @@
|
|
|
<td>{{$change->previousPro ? $change->previousPro->displayName() : '-'}}</td>
|
|
|
<td>{{$change->newPro ? $change->newPro->displayName() : '-'}}</td>
|
|
|
<td>{{$change->custom_memo}}</td>
|
|
|
- <td></td>
|
|
|
+ <td>
|
|
|
+ @if($pro->pro_type === 'ADMIN' && $change->creator)
|
|
|
+ {{$change->creator->displayName()}}
|
|
|
+ @endif
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|