@extends('marsland::layouts.master') @section('title', @$property['name']) @section('marsland-content')

{{ _trans('landlord.Property Owner') }}

img
{{ @$user->name }}

{{ $user->email }}

{{ _trans('landlord.Contact With seller ') }}

{{ $property['deal_type'] }}
@csrf
{{-- End property added to wishlist --}}
{{ $address['country'] }}
{{ $property['bedroom'] }} {{ $property['bedroom'] > 1 ? _trans('landlord.Beds') : _trans('landlord.Bed') }}
{{ $property['bedroom'] }} {{ $property['bedroom'] > 1 ? _trans('landlord.Baths') : _trans('landlord.Bath') }}
{{ $property['size'] }}{{ _trans('landlord.sqft') }}

{{ $property['name'] }}

{{ @$property['category'] }}
@if($advertisement['advertisement_type'] == \App\Enums\DealType::RENT) {{ $property['deal_type'] }} {{ _trans('landlord.From') }} {{ date('M d , Y', strtotime($advertisement['rent_start_date'])) }} {{ _trans('landlord.To') }} {{ date('M d , Y', strtotime($advertisement['rent_end_date'])) }} @elseif($advertisement['advertisement_type'] == \App\Enums\DealType::SELL) {{ $property['deal_type'] }} {{ _trans('landlord.From') }} {{ $advertisement['sell_start_date'] }} @elseif($advertisement['advertisement_type'] == \App\Enums\DealType::MORTGAGE) {{ $property['deal_type'] }} {{ _trans('landlord.For') }} "{{ $advertisement['mortgage_duration'] }} " {{ _trans('common.days') }} @elseif($advertisement['advertisement_type'] == \App\Enums\DealType::LEASE) {{ $property['deal_type'] }} {{ _trans('landlord.For') }} "{{ $advertisement['lease_duration'] }} " {{ _trans('common.days') }} @elseif($advertisement['advertisement_type'] == \App\Enums\DealType::CARETAKER) {{ $property['deal_type'] }} {{ _trans('landlord.For') }} "{{ $advertisement['caretacker_duration'] }} " {{ _trans('common.days') }} @endif
{{ _trans('landlord.Booking Price') }} : {{ priceFormat($property['booking_amount']) }}
{{ $property['deal_type'] }} {{ _trans('landlord.Amount') }} : {{ priceFormat($property['amount']) }}
{{ _trans('landlord.email') }} {{ _trans('landlord.call') }}
@csrf
{{ _trans('landlord.Descriptions') }}
{{ $property['description'] }}
@include('marsland::pages.property.includes.gallery')
@include('marsland::pages.property.includes.basic_info')
@include('marsland::pages.property.includes.location')
@include('marsland::pages.property.includes.reviews')
@csrf
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@include('marsland::pages.property.includes.basic_info')
@include('marsland::pages.property.includes.gallery')
@include('marsland::pages.property.includes.location')
@include('marsland::pages.property.includes.facilities')
@include('marsland::pages.property.includes.floor_plans')
@include('marsland::pages.property.includes.reviews')
@endsection