dbmsv2/app/Views/admin/welcome/stock.php
2025-09-30 14:05:14 +09:00

26 lines
907 B
PHP

<div class="layout_header" style="margin-top:20px;">
<ul class="nav nav-tabs">
<li class="nav-item">
<span class="nav-item navbar-brand" aria-current="page">
<h4>&nbsp;&nbsp;<?= ICONS['SETUP'] ?>재고현황&nbsp;&nbsp;</h4>
</span>
</li>
</ul>
</div>
<div style="border-left: 1px solid black; border-right: 1px solid black; padding:20px;">
<table class="table table-bordered table-striped">
<tr>
<th width="20%">메모리</th>
<th width="20%">저장장치</th>
<th width="30%">서버</th>
<th width="30%">데스크탑</th>
</tr>
<tr>
<td><?= view_cell("\App\Cells\Part\RAMCell::stock") ?></td>
<td><?= view_cell("\App\Cells\Part\DISKCell::stock") ?></td>
<td>준비중...</td>
<td>준비중...</td>
</tr>
</table>
</div>
<div class="layout_footer"></div>