@extends('layouts.app') @section('content')
Property Image
@foreach ($rent->images as $img) @endforeach

{{ $rent->property_code }}

{{ $rent->property_title }}

Property Description

{{ strip_tags($rent->property_description) }}

Asking Price: @php if ($rent->price >= 10000000) { $formattedPrice = round($rent->price / 10000000, 2) . ' Cr'; } elseif ($rent->price >= 100000) { $formattedPrice = round($rent->price / 100000, 2) . ' L'; } else { $formattedPrice = number_format($rent->price, 0); } @endphp ₹ {{ $formattedPrice }} (Negotiable)

Contact: For professional assistance and better deals contact {{ $rent->contact_name }}

Loan with lowest interest rates available.

@if ($rent->youtubeurl) @php // Extract YouTube Video ID from URL preg_match( '/(?:youtu\.be\/|youtube\.com\/(?:watch\?v=|embed\/))([\w\-]+)/', $rent->youtubeurl, $matches, ); $videoId = $matches[1] ?? null; @endphp @if ($videoId)
@endif @endif

GODs OWN Properties & Developers Pvt. Ltd., Ground Floor, N.P.Tower, Guruvayur Road, Westfort, Thrissur

Rs. {{ $rent->price }}

{{ $rent->locality->locality_name ?? 'N/A' }}

Contact: {{ $rent->contact_name }}

Contact Number: {{ $rent->contact_number }}

Enquire About This Property

@csrf
{!! captcha_img('flat') !!}
@if ($errors->any()) @endif @endsection