{{ $park->name }} Rides

Explore all rides at {{ $park->name }}

{{ $parkStats['total_rides'] }}
Total Rides
{{ $parkStats['operating_rides'] }}
Operating
{{ $parkStats['categories'] }}
Categories
@if($parkStats['avg_rating'])
{{ $parkStats['avg_rating'] }}★
Avg Rating
@endif
@foreach($categories as $category) @endforeach
@foreach($statuses as $status) @endforeach
@if($activeFiltersCount > 0) @endif
@if($rides->total() > 0) Showing {{ $rides->firstItem() }}-{{ $rides->lastItem() }} of {{ $rides->total() }} rides @else No rides found @endif
Loading...
@if($rides->count() > 0)
@foreach($rides as $ride)
@if($ride->photos->count() > 0) {{ $ride->name }} @else
@endif

{{ $ride->name }}

{{ ucfirst($ride->status) }}
{{ ucfirst(str_replace('_', ' ', $ride->category)) }}
@if($ride->description)

{{ $ride->description }}

@endif
@if($ride->opening_year)
Opened: {{ $ride->opening_year }}
@endif @if($ride->height_requirement)
Height: {{ $ride->height_requirement }}cm minimum
@endif @if($ride->manufacturer)
Manufacturer: {{ $ride->manufacturer->name }}
@endif
@if($ride->reviews_avg_rating)
@for($i = 1; $i <= 5; $i++) @endfor
{{ round($ride->reviews_avg_rating, 1) }} ({{ $ride->reviews_count }})
@endif
@endforeach
{{ $rides->links() }}
@else

No rides found

@if($activeFiltersCount > 0) Try adjusting your search criteria or clearing filters. @else This park doesn't have any rides yet. @endif

@if($activeFiltersCount > 0)
@endif
@endif