@if(!empty($demand?->locations[0]))
@php
$defaultMessage = '';
if (isset($request?->demand_id)) {
$defaultMessage = __('site.demand_quote') . ' ' .
($demand->locations[0]->governorate->name ?? '') . ',' .
($demand->locations[0]->city->name ?? '') . ',' .
($demand->locations[0]->compound->name ?? '');
} elseif(isset($property)) {
$defaultMessage = __('site.property_quote') . ' ' .
($property->location->governorate->name ?? '') . ',' .
($property->location->city->name ?? '') . ',' .
($property->location->compound->name ?? '');
}
@endphp
@endif