24 lines
951 B
PHP
24 lines
951 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> <?= ICONS['SETUP'] ?>재고현황 </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 class="text-center" width="33%">사용 서버</th>
|
|
<th class="text-center" width="33%">메모리 재고</th>
|
|
<th class="text-center">저장장치 재고</th>
|
|
</tr>
|
|
<tr>
|
|
<td><?= view_cell("\App\Cells\Equipment\CHASSISCell::stock") ?></td>
|
|
<td><?= view_cell("\App\Cells\Part\RAMCell::stock") ?></td>
|
|
<td><?= view_cell("\App\Cells\Part\DISKCell::stock") ?></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="layout_footer"></div>
|