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

{{ $project['project_name'] ?? '-' }}

{{ $project['project_number'] ?? '-' }}

{{ ucfirst($project['status'] ?? 'new') }}

Customer Details

Active User
Name: {{ $project['customer']['name'] ?? '-' }}
Phone: {{ $project['customer']['phone'] ?? '-' }}
Address: {{ $project['location']['address'] ?? '-' }}
Type: {{ ucfirst($project['project_type'] ?? '-') }}
Expected Completion: {{ $project['expected_completion'] ?? '-' }}
Measurement By: {{ $project['measurement_taken_by'] ?? '-' }}
@foreach($project['areas'] ?? [] as $area)

{{ $area['area_name'] ?? 'Area' }}

@if(isset($area['room_image'])) Room Image @endif @foreach($area['items'] ?? [] as $item)

Category: {{ ucfirst($item['category'] ?? '-') }}

@if(isset($item['product']))

Product: {{ $item['product']['name'] ?? '-' }}

Material: {{ $item['product']['material'] ?? '-' }}

Pattern: {{ $item['product']['pattern'] ?? '-' }}

@endif @if(isset($item['variant']))

Variant: {{ $item['variant']['sku'] ?? '-' }}

Price: ₹{{ $item['variant']['mrp'] ?? '0.00' }}

@endif

Quantity: {{ $item['quantity'] ?? '0' }}

@endforeach
@endforeach
Back to Projects
@endsection