...

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

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

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

...

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

@php $make = !empty($advertismentObject->excursionVacation->getDestinationAddress()) ? $advertismentObject->excursionVacation->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->excursionVacation->free_cancellation; $result = $freeCancel == '0' ? 'No ' : 'Yes'; @endphp

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