{{ $guide->title }}
Country: {{ $guide->country->name ?? 'N/A' }}
@foreach($steps as $index => $step)
{{ $index+1 }}. {{ $step['step_title'] ?? 'Untitled' }}
{{ $step['step_body'] ?? '' }}
@if(!empty($step['checklist_items']))
📋 Checklist:
@foreach($step['checklist_items'] as $item)
{{ $item }}
@endforeach
@endif
@endforeach