mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
75 lines
3.3 KiB
PHP
75 lines
3.3 KiB
PHP
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>order-qr-{{$order->marking}}</title>
|
|
</head>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'HanWangYenHeavy';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(http://eclecticgeek.com/dompdf/fonts/cjk/fireflysung.ttf) format('truetype');
|
|
}
|
|
@page { margin: 0px; }
|
|
body { margin: 0px; }
|
|
body {
|
|
font-family: Firefly Sung, DejaVu Sans, sans-serif;
|
|
text-transform: uppercase;
|
|
}
|
|
.page-break {
|
|
page-break-after: always;
|
|
}
|
|
</style>
|
|
<body>
|
|
<table style="width: 100%; border: 2px solid #000000;">
|
|
<tbody>
|
|
@for ($i = 0; $i < 4; $i++)
|
|
<tr>
|
|
<td align="center" width="30%" style="border: 2px solid #000000;">
|
|
<table width="100%">
|
|
<tbody>
|
|
<tr align="center">
|
|
<td>
|
|
<img src="{{ url('https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl={"hash":"{1*23456}","id":"1"}') }}" />
|
|
</td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td>
|
|
<h5 style="margin: 0 !important;"><strong>#{{$order->marking}}</strong></h5>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
<td width="70%" style="border: 2px solid #000000; padding: 15px !important;">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td style="border-bottom: solid 2px #000000;">
|
|
<h2 style="margin-top: 0px !important; margin-bottom: 10px !important;">{{$company->marking}}</h2>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="border-bottom: solid 1px #000000;">
|
|
<h5 style="margin-top: 10px !important; margin-bottom: 10px !important; word-wrap: break-word">{{$delivery_address->street_one.' '.$delivery_address->street_two.' '.$delivery_address->city.' '.$delivery_address->post_code.' '.$delivery_address->state}}</h5>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p style="font-size: 12px; margin-bottom: 0 !important; margin-top: 10px !important;">仓库地址:</p>
|
|
<p style="margin-top: 5px !important; margin-bottom: 5px !important; word-wrap: break-word; font-size: 16px;">广州市世通行进出口有限公司 广州市白云区白云湖街大朗南路自编13号世通行7号仓库(高德地图导航:广州市世通行) 邮箱偏号:510450</p>
|
|
<p style="margin-top: 5px !important; margin-bottom: 0px !important; font-size: 12px;">联系电话:杨先生 13900055019 / 梁先生 18529309778</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</td>
|
|
</tr>
|
|
@endfor
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|