Files
exchange-2.0/resources/views/layouts/base_pdf.blade.php
T
2021-04-12 14:44:05 +08:00

40 lines
549 B
PHP

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
@font-face {
font-family: SimHei;
src: url('{{base_path().'/public/'}}simhei.ttf') format('truetype');
}
* {
font-family: SimHei, serif ;
}
.detail-box {
height: 200px;
margin-bottom: 50px;
}
.float-left {
width: 50%;
float: left;
}
.float-right {
width: 50%;
float: right;
}
.bill-box {
width: 100%;
}
.text-right {
text-align: right;
}
</style>
</head>
<body>
@yield('inner_content')
</body>
</html>