|
@@ -2,14 +2,26 @@
|
|
|
if ($point->lastChildReview && $point->lastChildReview->data) {
|
|
|
$point->lastChildReview->data = json_decode($point->lastChildReview->data, true);
|
|
|
$contentData = $point->lastChildReview->data;
|
|
|
+ $y = 1;
|
|
|
foreach ($contentData as $k => $v) {
|
|
|
if((!!$v) && (!@$keysToSkip || !in_array($k, $keysToSkip))) {
|
|
|
?>
|
|
|
- <div class="d-flex align-items-baseline">
|
|
|
- <span class="text-secondary mr-2">{{sanitize_state_name($k)}}:</span>
|
|
|
- <span>{{is_array($v) ? implode(", ", $v) : $v}}</span>
|
|
|
- </div>
|
|
|
+ <tr>
|
|
|
+ <td class="pr-2 pl-0 width-40px">
|
|
|
+ {{$y}}.
|
|
|
+ </td>
|
|
|
+ <td class="px-2 grow-till-300px">
|
|
|
+ {{sanitize_state_name($k)}}
|
|
|
+ </td>
|
|
|
+ <td class="width-300px">
|
|
|
+ <div class="pl-2">
|
|
|
+ {{is_array($v) ? implode(", ", $v) : $v}}
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td></td>
|
|
|
+ </tr>
|
|
|
<?php
|
|
|
+ $y++;
|
|
|
}
|
|
|
}
|
|
|
}
|