@extends('admin.layout.template') @section('title', 'Quotation Details') @section('content')

Edit Quotation

{{-- HEADER EDIT FORM --}}
@csrf
{{-- PROJECT NAME --}}
{{-- CUSTOMER NAME --}}
{{-- CUSTOMER PHONE --}}
{{-- ADDRESS --}}
{{-- PROJECT TYPE --}}
{{-- EXPECTED COMPLETION --}}
{{-- EMPLOYEE NAME --}}
{{-- EMPLOYEE CONTACT --}}
{{-- QUOTATION STATUS --}}
{{-- SUBTOTAL --}}
{{-- TAX --}}
{{-- GRAND TOTAL --}}
Rooms
@foreach($quotation->areas as $area)
{{ $area->area_name }}
@foreach($groupedItems[$area->id] ?? [] as $item) @endforeach
Category Product Variant Qty Total Action
{{ ucfirst($item->category) }} {{ $item->product->name ?? '' }} {{ $item->variant->sku ?? '' }} {{ $item->quantity }} ₹ {{ number_format($item->total,2) }}
@endforeach
@endsection