Added ref no above the qr code in sticker printing #54
@@ -16,7 +16,7 @@
|
|||||||
</html> --}}
|
</html> --}}
|
||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
{{-- <!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<style>
|
<style>
|
||||||
@@ -40,9 +40,53 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<img src="data:image/png;base64,{{ $qrCode }}" />
|
<img src="data:image/png;base64,{{ $qrCode }}" />
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html> --}}
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
@page {
|
||||||
|
margin: 0;
|
||||||
|
size: 100mm 100mm;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 100mm;
|
||||||
|
height: 100mm;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
width: 90mm; /* QR CODE REDUCED TO FIT TEXT */
|
||||||
|
height: 90mm;
|
||||||
|
}
|
||||||
|
.ref-text {
|
||||||
|
margin-top: 3mm;
|
||||||
|
font-size: 16px; /* Increased Font Size */
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="ref-text">
|
||||||
|
{{ $referenceNumber }}
|
||||||
|
</div>
|
||||||
|
<img src="data:image/png;base64,{{ $qrCode }}" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user