{{-- resources/views/livewire/trips/pre-planned-trip-selection.blade.php --}}
{{ $destination->country }}
{{ $destination->description }}
{{ $template->description }}
@if($template->highlights) @php // Check if highlights is already an array $highlights = is_array($template->highlights) ? $template->highlights : json_decode($template->highlights, true); $previewHighlights = $highlights ? array_slice($highlights, 0, 3) : []; @endphp @if(!empty($previewHighlights))Select optional activities to enhance your trip experience:
Selected Optional Activities:
@foreach($selectedOptionalActivities as $activity){{ $selectedTemplate->description }}
{{ $activity->description }}
No activities scheduled for this day.
@endif