@extends('layouts.pages') @section('title', $point->meta_title ?? $point->title) @section('meta_description', $point->meta_description) @section('meta_keywords', $point->meta_keywords) @section('meta_robots', $point->meta_robots) @section('canonical_url', $point->canonical_url) @section('content')

{{ $point->title }}

@if ($point->content)
{{ $point->content }}
@endif @if ($point->featured_image && Storage::disk('public')->exists($point->featured_image)) @endif
@if ($point->hotel_stays_title != '')

{{ $point->hotel_stays_title ?? '' }}

@if ($point->hotel_stays_content)

{!! nl2br(e($point->hotel_stays_content)) !!}

@endif @if ($point->hotel_stays_link) @endif
@endif @if ($point->dining_title != '')
@if ($point->dining_icon)
@endif

{{ $point->dining_title ?? '' }}

@if ($point->dining_content)

{!! nl2br(e($point->dining_content)) !!}

@endif @if ($point->dining_link) @endif
@endif @if ($point->spa_title != '')

{{ $point->spa_title ?? '' }}

@if ($point->spa_content)

{!! nl2br(e($point->spa_content)) !!}

@endif @if ($point->spa_link) @endif
@endif
@if (request()->is('points/donate-points')) @endif
@if ($point->points_earning_image && Storage::disk('public')->exists($point->points_earning_image))
{{ $point->points_earning_image_alt ?? 'Points Earning Information' }}
@endif
@endsection