Files
portal/resources/views/layouts/base_pdf.blade.php
T
omair saleh d8c767c670 Large commit
2021-08-16 08:59:43 +08:00

24 lines
370 B
PHP

<!DOCTYPE html>
<html lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<style>
@page {
header: page-header;
footer: page-footer;
}
body {
font-family: sun-extA;
padding: 0;
}
</style>
</head>
<body>
@yield('inner_content')
</body>
</html>