|
@@ -57,7 +57,13 @@
|
|
|
@foreach($order->testsRequested() as $tkey => $test)
|
|
|
<small>{{ config('constants.tests.'.$test) }}</small>@if($order->associatedOrders($order->id) && count($order->testsRequested()) -1 !== $tkey),@endif
|
|
|
@endforeach
|
|
|
-
|
|
|
+ {{-- Associated Orders --}}
|
|
|
+ @foreach($order->associatedOrders($order->id) as $tOrder => $assocOrder)
|
|
|
+ <?php $orderTotal = $orderTotal + $assocOrder->order_total; ?>
|
|
|
+ @foreach($assocOrder->testsRequested() as $tkey => $test)
|
|
|
+ <small>{{ config('constants.tests.'.$test) }}<small>>@if(count($order->associatedOrders($order->id)) -1 !== $tOrder),@endif
|
|
|
+ @endforeach
|
|
|
+ @endforeach
|
|
|
@if(@$storeOrderSelectedOptions->partner == 1)
|
|
|
<p class="mt-2 mb-0"><b style="font-family:sans-serif">Partner: {{@$storeOrderSelectedOptions->partner_email}}</b></p>
|
|
|
@endif
|