129 lines
4.0 KiB
PHP
129 lines
4.0 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ $title }}</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 12px;
|
|
line-height: 1.4;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
border-bottom: 2px solid #4A538F;
|
|
padding-bottom: 10px;
|
|
}
|
|
.header h1 {
|
|
margin: 0;
|
|
color: #4A538F;
|
|
font-size: 18px;
|
|
}
|
|
.header p {
|
|
margin: 5px 0 0;
|
|
color: #666;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
}
|
|
th, td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
th {
|
|
background-color: #4A538F;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
tr:nth-child(even) {
|
|
background-color: #f9fafb;
|
|
}
|
|
.total-row {
|
|
background-color: #E9EBF5 !important;
|
|
font-weight: bold;
|
|
}
|
|
.footer {
|
|
margin-top: 30px;
|
|
text-align: right;
|
|
font-size: 10px;
|
|
color: #666;
|
|
}
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>{{ $title }}</h1>
|
|
<p>Periode: {{ \Carbon\Carbon::parse($tanggalMulai)->format('d M Y') }} - {{ \Carbon\Carbon::parse($tanggalAkhir)->format('d M Y') }}</p>
|
|
</div>
|
|
|
|
<table>
|
|
@if($jenis === 'masuk')
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Nama Obat</th>
|
|
<th>Satuan</th>
|
|
<th class="text-right">Total Jumlah Masuk</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@php $grandTotal = 0; @endphp
|
|
@foreach($data as $index => $item)
|
|
@php $grandTotal += $item->total_jumlah; @endphp
|
|
<tr>
|
|
<td class="text-center">{{ $index + 1 }}</td>
|
|
<td>{{ $item->nama_obat ?? 'N/A' }}</td>
|
|
<td>{{ $item->satuan ?? '-' }}</td>
|
|
<td class="text-right">{{ number_format($item->total_jumlah, 0, ',', '.') }}</td>
|
|
</tr>
|
|
@endforeach
|
|
<tr class="total-row">
|
|
<td colspan="3" class="text-right">TOTAL</td>
|
|
<td class="text-right">{{ number_format($grandTotal, 0, ',', '.') }}</td>
|
|
</tr>
|
|
</tbody>
|
|
@else
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Nama Obat</th>
|
|
<th>Satuan</th>
|
|
<th class="text-right">Total Jumlah Keluar</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@php $grandTotal = 0; @endphp
|
|
@foreach($data as $index => $item)
|
|
@php $grandTotal += $item->total_jumlah; @endphp
|
|
<tr>
|
|
<td class="text-center">{{ $index + 1 }}</td>
|
|
<td>{{ $item->nama_obat ?? 'N/A' }}</td>
|
|
<td>{{ $item->satuan ?? '-' }}</td>
|
|
<td class="text-right">{{ number_format($item->total_jumlah, 0, ',', '.') }}</td>
|
|
</tr>
|
|
@endforeach
|
|
<tr class="total-row">
|
|
<td colspan="3" class="text-right">TOTAL</td>
|
|
<td class="text-right">{{ number_format($grandTotal, 0, ',', '.') }}</td>
|
|
</tr>
|
|
</tbody>
|
|
@endif
|
|
</table>
|
|
|
|
<div class="footer">
|
|
<p>Total: {{ $data->count() }} jenis obat</p>
|
|
<p>Dicetak pada: {{ now()->format('d M Y H:i:s') }}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|