order-tests-summary.blade.php 319 B

123456789101112
  1. <?php
  2. $tests = (object) $order->testsRequestedInHumanReadable();
  3. ?>
  4. <table class="table table-sm table-bordered border w-100 mb-0">
  5. <tbody>
  6. @foreach ($tests as $test)
  7. <tr>
  8. <td class="w-50 w-lg-75 px-2">{{ $test }}</td>
  9. </tr>
  10. @endforeach
  11. </tbody>
  12. </table>