|
@@ -131,7 +131,7 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach($entries as $entry)
|
|
|
- @if($entry->cm_or_rm === "CM")
|
|
|
+ @if(!$entry->is_removed && $entry->cm_or_rm === "CM")
|
|
|
<tr>
|
|
|
<td class="px-2">
|
|
|
<div class="font-weight-bold">{{friendly_date_time($entry->created_at)}}</div>
|
|
@@ -225,7 +225,7 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach($entries as $entry)
|
|
|
- @if($entry->cm_or_rm === "RM")
|
|
|
+ @if(!$entry->is_removed && $entry->cm_or_rm === "RM")
|
|
|
<tr>
|
|
|
<td class="px-2">
|
|
|
<div class="font-weight-bold">{{friendly_date_time($entry->created_at)}}</div>
|