@php $version = $basicInfo->theme_version; @endphp @extends("frontend.layouts.layout-v$version") @section('pageHeading') {{ $project->title }} @endsection @section('metaKeywords') @if (!empty($project)) {{ $project->meta_keyword }} @endif @endsection @section('metaDescription') @if (!empty($project)) {{ $project->meta_description }} @endif @endsection @section('og:tag') @endsection @section('content')

{{ $project->title }}

{{ $project->address }}

@if ($project->vendor_id == 0) {{ $username }} @else {{ $project->vendor->username }} @endif

{{ __('Project Overview') }}

{!! $project->description !!}

@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif

{{ __('Share') }}

@if (count($project->specifications) > 0)

{{ __('Features') }}

@foreach ($project->specifications as $specification) @php $project_specification_content = App\Models\Project\SpacificationContent::where([ ['project_spacification_id', $specification->id], ['language_id', $language->id], ])->first(); @endphp
{{ $project_specification_content?->label }}
{{ $project_specification_content?->value }}
@endforeach
@endif

{{ __('Location') }}

{{ __('Floor Planning') }}

@foreach ($floorPlanImages as $floorplan)
@endforeach
@if (count($project->projectTypeContents) > 0)

{{ __('Project Types') }}

@foreach ($project->projectTypeContents as $typeContent)
  • {{ __('Area') }} {{ $typeContent?->min_area }} @if (!empty($typeContent->max_area)) {{ ' - ' . $typeContent->max_area }} @endif {{ __('Sqft') }}
  • {{ __('Price') }} {{ symbolPrice($typeContent?->min_price) }} @if (!empty($typeContent->max_price)) {{ ' - ' . symbolPrice($typeContent->max_price) }} @endif
  • {{ __('Unit') }} {{ $typeContent?->unit }}
@endforeach
@endif @if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif
{{-- share on social media modal --}} @endsection