@if(session('success')) @endif @if(session('error')) @endif @extends('layouts.user.user') @section('title', 'Quote Details') @section('page', 'Quote Details') @section('content')
{{ $quote->title ?? 'Unnamed Project' }}
Designer Name - {{ $quote->staff->name ?? '-' }}   
Project Details

Quote Id: #{{ $quote->id }}

Client Name: {{ $quote->client_name }}

Project Name: {{ $quote->title }}

Project Location: {{ $quote->location }}

Quote Date: {{ date('d-m-Y', strtotime($quote->start_date)) }}

Material Details

Approx. sqft: {{ number_format($quote->area) }}

Material Used: {{ $quote->materialType->name ?? '-' }}

Skylight panels: {{ $quote->skylight_panel ?? 0 }}

Turbo Vents: {{ $quote->turbo_vents ?? 0 }}

Final Cost: ₹ {{ number_format($quote->project_cost) }}

Color & Finish: {{ $quote->color ?? '-' }}

Sheating Angle: {{ $quote->sheeting_angle ?? '-' }}

Wall light panels: {{ $quote->wall_light_panel ?? 0 }}

Fasteners/Screws: {{ $quote->screws ?? 0 }}

Payment Details
@if($quote->costStages) @foreach($quote->costStages as $payment)
@endforeach @else

No payment details found.

@endif
Assigned Designer
Description
Signed Offer

Signed Offer

@if($quote->digital_signature) Signature @else

No signature available

@endif
@csrf
@csrf
@endsection