Parks

Add Park

Filters

@forelse($parks as $park)

{{ $park->name }}

@if($park->location) {{ $park->location->city }}{{ $park->location->state ? ', ' . $park->location->state : '' }}{{ $park->location->country ? ', ' . $park->location->country : '' }} @else Location unknown @endif
{{ $park->status->label() }} @if($park->opening_date) Opened {{ date('Y', strtotime($park->opening_date)) }} @endif @if($park->ride_count) {{ $park->ride_count }} ride{{ $park->ride_count != 1 ? 's' : '' }} @endif @if($park->coaster_count) {{ $park->coaster_count }} coaster{{ $park->coaster_count != 1 ? 's' : '' }} @endif
@empty
@if($search) No parks found matching "{{ $search }}". Try adjusting your search terms. @else No parks found matching your criteria. Try adjusting your filters. @endif Add a new park.
@endforelse
{{ $parks->links() }}