18 lines
758 B
PHP
18 lines
758 B
PHP
<div class="space-y-6 max-w-lg">
|
|
<p class="text-sm text-gray-600">기본 정보 조회 메뉴입니다. 항목을 선택하세요.</p>
|
|
<ul class="space-y-2 border border-gray-200 rounded-lg bg-white divide-y divide-gray-100">
|
|
<li>
|
|
<a href="<?= base_url('bag/prices') ?>" class="flex items-center justify-between px-4 py-3 text-sm font-medium text-gray-800 hover:bg-blue-50">
|
|
봉투 단가
|
|
<span class="text-gray-400">→</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="<?= base_url('bag/packaging-units') ?>" class="flex items-center justify-between px-4 py-3 text-sm font-medium text-gray-800 hover:bg-blue-50">
|
|
포장 단위
|
|
<span class="text-gray-400">→</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|