@extends('layouts.app') @section('title', '견적서 편집') @section('content') @php $options = $quotation->options ?? []; $client = $options['client'] ?? []; $project = $options['project'] ?? []; $pricing = $options['pricing'] ?? []; $terms = $options['terms'] ?? []; @endphp

견적서 편집 {{ $quotation->quote_number }}

상세보기

고객 정보

프로젝트 정보

품목 편집

@foreach($quotation->items as $index => $item) @endforeach
No 분류 위치 품목명 규격 단위 수량 단가 금액
{{ $index + 1 }} {{ number_format((float)$item->total_price) }}
소계 {{ number_format((int)($pricing['subtotal'] ?? 0)) }}

가격 조정

소계{{ number_format((int)($pricing['subtotal'] ?? 0)) }}원
할인-{{ number_format((int)($pricing['discount_amount'] ?? 0)) }}원
부가세 (10%){{ number_format((int)($pricing['vat_amount'] ?? 0)) }}원
최종 금액 {{ number_format((int)($pricing['final_amount'] ?? 0)) }}원

견적 조건

취소
@endsection @push('scripts') @endpush