|
@@ -64,7 +64,7 @@
|
|
|
$tests = [];
|
|
|
$subOrders = $order->allAssociatedOrders();
|
|
|
foreach($subOrders as $subOrder){
|
|
|
- $tests = array_merge($tests, $subOrder->testsRequestedInHumanReadable());
|
|
|
+ $tests = array_merge($tests, (array) $subOrder->getOrderTestsSummary());
|
|
|
}
|
|
|
?>
|
|
|
|
|
@@ -73,7 +73,7 @@
|
|
|
<tbody>
|
|
|
@foreach ($tests as $key=>$test)
|
|
|
<tr>
|
|
|
- <td class="w-50 w-lg-75 px-2">{{ $test }}</td>
|
|
|
+ <td class="w-50 w-lg-75 px-2">{{ $test['name'] }}</td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|
|
@@ -142,7 +142,7 @@
|
|
|
<?php
|
|
|
$partnerTests = [];
|
|
|
foreach($subOrders as $subOrder){
|
|
|
- $partnerTests = array_merge($partnerTests, $subOrder->partnerTestsRequestedInHumanReadable());
|
|
|
+ $partnerTests = array_merge($partnerTests, (array) $subOrder->getOrderTestsSummary());
|
|
|
}
|
|
|
?>
|
|
|
@if(count($partnerTests))
|
|
@@ -157,7 +157,7 @@
|
|
|
<tbody>
|
|
|
@foreach ($partnerTests as $pKey=>$pTest)
|
|
|
<tr>
|
|
|
- <td class="w-50 w-lg-75 px-2">{{ $pTest }}</td>
|
|
|
+ <td class="w-50 w-lg-75 px-2">{{ $pTest['name'] }}</td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|