@@ -82,6 +82,12 @@ $points = [
</tr>
@endforeach
+ @if(!count($points))
+ <tr>
+ <td>-</td>
+ </tr>
+ @endif
+
</table>
</div>
@@ -31,5 +31,5 @@
<?php else: ?>
- <span class="text-secondary text-sm">None</span>
+ <span class="text-secondary text-sm">-</span>
<?php endif; ?>
@@ -15,6 +15,10 @@ $points = [
];
?>
+<?php if(count($points)): ?>
+ <span>-</span>
+<?php endif ?>
<?php foreach ($points as $p): ?>
<?php $point = $p['point']; ?>
<?php if(!!$point): ?>
@@ -25,6 +25,10 @@ $points = [
<table class="table table-bordered table-sm mb-0">