{{ $park->name }}

@auth @endauth
@if($park->photos->count() > 0) {{ $park->name }} @else

No photos available

@endif
{{ $park->status->label() }} @if($park->opening_date) Opened {{ date('F j, Y', strtotime($park->opening_date)) }} @endif
@if($park->description)

{{ $park->description }}

@endif
@if($park->ride_count)
{{ $park->ride_count }}
Total Rides
@endif @if($park->coaster_count)
{{ $park->coaster_count }}
Roller Coasters
@endif @if($park->size_acres)
{{ number_format($park->size_acres) }}
Acres
@endif @if($park->annual_attendance)
{{ number_format($park->annual_attendance) }}
Annual Visitors
@endif
@if($park->location)
Location
{{ $park->location->city }}{{ $park->location->state ? ', ' . $park->location->state : '' }}{{ $park->location->country ? ', ' . $park->location->country : '' }}
@endif @if($park->operator)
Operator
{{ $park->operator->name }}
@endif @if($park->website) @endif
@if($park->areas->count() > 0)

Park Areas & Attractions

@foreach($park->areas as $area)

{{ $area->name }}

@if($area->description)

{{ $area->description }}

@endif
{{ $area->type }}
@if($area->rides->count() > 0)
@foreach($area->rides as $ride)
{{ $ride->name }}

{{ $ride->category->label() }}

@if($ride->opening_date)

Opened {{ date('Y', strtotime($ride->opening_date)) }}

@endif
{{ $ride->status->label() }}
@endforeach
@else

No attractions listed for this area.

@endif
@endforeach
@else

No areas or attractions

This park doesn't have any areas or attractions listed yet.

@endif