Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 10s
Gemini PR Review / review (pull_request) Failing after 27s
Laravel Larastan / larastan (pull_request) Failing after 2m15s
Laravel Pint / pint (pull_request) Failing after 7m11s
93 lines
1.7 KiB
PHP
93 lines
1.7 KiB
PHP
{{-- <!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { text-align: center; font-family: Arial, sans-serif; }
|
|
.qr-container { margin-top: 30px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="qr-container">
|
|
<img src="data:image/png;base64,{{ $qrCode }}" width="250" height="250">
|
|
</div>
|
|
|
|
</body>
|
|
</html> --}}
|
|
|
|
|
|
{{-- <!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
@page {
|
|
margin: 0;
|
|
size: 100mm 100mm;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100mm;
|
|
height: 100mm;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
img {
|
|
width: 100mm;
|
|
height: 100mm;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<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>
|
|
</html>
|
|
|
|
|