Masuksini-Real-Estate/resources/views/pdf/persediaan.blade.php

91 lines
1.3 KiB
PHP
Raw Normal View History

2024-09-07 01:16:49 +00:00
<style>
@page { margin: 0px; }
body { margin: 0px; }
h1{margin: 0; padding: 0;}
*{
font-family: Arial,Helvetica Neue,Helvetica,sans-serif;
}
table{
width: 100%;
border-collapse: collapse;
}
th
,td{
padding: 5px 10px;
border: 1px solid #ddd;
}
td{
font-size: 12px;
}
th{
text-align: center;
}
.right{
text-align: right;
}
.center{
text-align: center;
}
.container{
padding: 50px;
}
.heading{
text-align: center;
}
.margin-b-50{
margin-bottom: 50px;
}
.margin-b-40{
margin-bottom: 40px;
}
.margin-b-30{
margin-bottom: 30px;
}
.margin-b-20{
margin-bottom: 20px;
}
.margin-b-10{
margin-bottom: 10px;
}
</style>
<div class="container">
<div class="heading margin-b-30">
<h1>Laporan Persediaan Barang {{ date('Y-M-d') }}</h1>
</div>
<div>
<table>
<thead>
<tr>
<th width="60px">ID Akun</th>
<th width="160px">Nama Barang</th>
<th width="60px">Barang Tersedia</th>
<th width="50px">Total Awal</th>
<th width="80px">Harga Awal</th>
<th width="50px">Total Terjual</th>
<th width="80px">Harga Jual</th>
<th width="50px">Total Pesanan</th>
<th width="80px">Harga Pesanan</th>
</tr>
</thead>
<tbody>
{!! html_entity_decode($laporan_persediaan) !!}
</tbody>
</table>
</div>
</div>