@if (isset($countries) && count($countries) > 0)
Countries we offer

@php $countrySectionTitle = getDataBySlug('Widget', 'country-section-title', 'content'); @endphp @if ($countrySectionTitle) {!! $countrySectionTitle->content ?? '-' !!} @endif

@forelse ($countries as $country)
@if ($country->feature_image && file_exists(public_path('uploads/countries/' . $country->feature_image))) {{ $country->title ?? '-' }} @else {{ $country->title ?? '-' }} @endif
{{ $country->title ?? '-' }}
{{ $country->content ?? '-' }}
@empty
@endforelse
@endif