Files
konfirmasibank/Resources/views/exportPdf.blade.php
KhatamNugraha 6c1da95c1a find error 43
2024-02-27 17:38:18 +07:00

31 lines
640 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PDF Title</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #333;
}
p {
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>PDF Content</h1>
<p>This is a sample PDF generated using Dompdf in Laravel.</p>
</div>
</body>
</html>