{{-- 견적서 읽기전용 렌더링 Props: $content (array) - approvals.content JSON --}}
| # | 품명 | 규격 | 수량 | 단가 | 공급가액 | 세액 | 비고 |
|---|---|---|---|---|---|---|---|
| {{ $idx + 1 }} | {{ $item['name'] ?? '' }} | {{ $item['spec'] ?? '' }} | {{ $item['qty'] ?? 0 }} | {{ number_format($item['unit_price'] ?? 0) }} | {{ number_format($item['supply_amount'] ?? 0) }} | {{ number_format($item['tax'] ?? 0) }} | {{ $item['note'] ?? '' }} |
| 합 계 | {{ number_format($content['total_supply'] ?? 0) }} | {{ number_format($content['total_tax'] ?? 0) }} | |||||
| 견적금액 | {{ number_format($content['total_amount'] ?? 0) }}원 | ||||||