@extends('layouts.dashboard') @section('title', $activity->title . ' - ' . $trip->title) @section('header', 'Activity Details') @section('content')

{{ $activity->title }}

{{ $activity->location }} Day {{ $activity->itinerary->day_number }} - {{ $activity->itinerary->formatted_date }}
Activity Time
{{ $activity->formatted_time_range }}

About This Activity

@if($activity->description)

{{ $activity->description }}

@else

No description provided.

@endif
Time
{{ $activity->formatted_time_range }}
Cost
{{ $activity->formatted_cost }}
Type
{{ $activity->type ?? 'Not specified' }}
Added By
{{ $activity->creator ? $activity->creator->name : 'Unknown' }}
Edit Activity
@csrf @method('DELETE')

Location

Map View (Google Maps Integration)
Open in Google Maps

Trip Members

SM
Sarah Miller (You)
Organizer
@foreach(range(1, 2) as $index)
{{ ['MJ', 'JT'][$index-1] }}
{{ ['Michael Johnson', 'Jessica Taylor'][$index-1] }}
Member
@endforeach
@endsection