@if ($property->is_exchange)
{{ __('site.exchange') }}
@lang('site.Property_Type')
{{ implode(',', $property->exchange_types->pluck('label')->toArray()) }}
@lang('site.Comments')
{!! $property->exchange->exchange_comment !!}
@lang('site.country')
{{ implode(',',\App\Country::whereIn('id', $country_ids)->pluck('country_name_' . LaravelLocalization::getCurrentLocale())->toArray()) }}
@lang('site.country')
{{ implode(',',\App\Governorate::whereIn('id', $governorate_ids)->pluck('governorate_name_' . LaravelLocalization::getCurrentLocale())->toArray()) }}
@lang('site.City')
{{ implode(',',\App\City::whereIn('id', $city_ids)->pluck('city_name_' . LaravelLocalization::getCurrentLocale())->toArray()) }}
@lang('site.district')
{{ implode(',',\App\District::whereIn('id', $district_ids)->pluck('district_name_' . LaravelLocalization::getCurrentLocale())->toArray()) }}
@lang('site.compound')
{{ implode(',',\App\Compound::whereIn('id', $compound_ids)->pluck('compound_name_' . LaravelLocalization::getCurrentLocale())->toArray()) }}
@lang('site.price')
{{ $property->exchange->priceFrom .'-'. $property->exchange->priceTo }}
@lang('site.avail_untill')
{{ $property->exchange->avail_untill }}
@lang('site.serious_level')
@foreach(explode(',',$property->exchange->serious_level) as $SE) @lang('site.'.$SE) @if(!$loop->last) , @endif @endforeach
@lang('site.price_diff')
@foreach(explode(',',$property->exchange->priceDF) as $PD) @lang('site.'.$PD) @if(!$loop->last) , @endif @endforeach
@lang('site.price_way')
@foreach(explode(',',$property->exchange->exWay) as $way) @lang('site.'.$way) @if(!$loop->last) , @endif @endforeach
@lang('site.Comment')
{{ $property->comment }}