@extends('user_layout.app')
@section('title', $project->title)
@section('content')
{{ $project->title }}
Location: {{ $project->location }}
@if($project->rera)
| RERA: {{ $project->rera }}
@endif
Quick Summary
| Property Category | {{ $project->category }} |
| Builder Name | {{ $project->builder }} |
| Typology | {{ $project->typology }} |
| Property Type | {{ $project->property_type }} |
| Possession | {{ $project->possession }} |
@if($project->images->count())
@foreach($project->images as $k => $img)
 }})
@endforeach
@endif
@if($project->overview)
Project Description
{!! $project->overview !!}
@endif
@if($project->highlights)
Project Highlights at a Glance
{!! $project->highlights !!}
@endif
@if($project->amenities)
Amenities
{!! $project->amenities !!}
@endif
@if($project->location_advantage)
Prime Location Advantage
{!! $project->location_advantage !!}
@endif
@if($project->map_embed)
📍 Project Location
{!! $project->map_embed !!}
@endif
@endsection
@section('scripts')
@endsection