浏览代码

edit docket pdf

ifah
父节点
当前提交
d7b6f30d76
共有 1 个文件被更改,包括 16 次插入4 次删除
  1. 16
    4
      resources/views/pdf/docket-pdf.blade.php

+ 16
- 4
resources/views/pdf/docket-pdf.blade.php 查看文件

@@ -92,20 +92,32 @@
<tr style="height: 50px;">
<td style="font-size: 12px; width: 100px;">Type of Testing</td>
<td>:</td>
<td style="width:30px;">
<table border="1" style="width: 25px; height: 20px;"></table>
<td style="width:30px;">
@if (preg_match("/Browsing Internet/i", $docket->type_testing) != 0 )
<img src="{{ url('/assets/tick.png') }}" style="width:14px; height:auto">
@else
<table border="1" style="width: 25px; height: 20px;"></table>
@endif
</td>
<td style="width: 50px;">
<div style="font-size: 11px">Browsing Internet<div>
</td>
<td style="width:30px;">
<table border="1" style="width: 25px; height: 20px;"></table>
@if (preg_match("/Throughput Test/i", $docket->type_testing) != 0 )
<img src="{{ url('/assets/tick.png') }}" style="width:14px; height:auto">
@else
<table border="1" style="width: 25px; height: 20px;"></table>
@endif
</td>
<td style="width: 50px;">
<div style="font-size: 11px">Throughput Test</div>
</td>
<td style="width:30px;">
<table border="1" style="width: 25px; height: 20px;"></table>
@if (preg_match("/Ping Test/i", $docket->type_testing) != 0 )
<img src="{{ url('/assets/tick.png') }}" style="width:14px; height:auto">
@else
<table border="1" style="width: 25px; height: 20px;"></table>
@endif
</td>
<td style="width: 70px;">
<div style="font-size: 11px">"Ping" Test</div>

正在加载...
取消
保存