...

{{__('attribute.Destination Address')}}

@php $make = !empty($advertismentObject->thingsToDo->getDestinationAddress()) ? $advertismentObject->thingsToDo->getDestinationAddress():'' ; @endphp

{{ !empty($make) ? $make : '' }}

...

{{ __('attribute.TourGuide') }}

@php $adId = $advertismentObject->id; $tourGuide = \App\Models\TourGuideLanguage::where('advertisment_id', $adId)->pluck('value'); foreach ($tourGuide as $key => $value) { $list = ['NO' => 'No'] + getLanguageList(); $data[] = isset($list[$value]) ? $list[$value] : ''; } @endphp

@if (!empty($data)) @foreach ($data as $dataKey => $dataValue) {{ !empty($dataValue) ? $dataValue : '' }}
@endforeach @endif

...

{{ __('attribute.Free Cancellation') }}

@php $freeCancel=$advertismentObject->thingsToDo->free_cancellation; $result = $freeCancel=='0'? "No ":"Yes"; @endphp

{{ !empty($result) ? $result : '' }}