{{-- Header --}}

{{ $ride->name }}

{{ $ride->park->name }} @if($ride->parkArea) {{ $ride->parkArea->name }} @endif

{{ $ride->status->label() }}
{{-- Basic Information --}}
Category
{{ $ride->category->label() }}
Operating Period
{{ $this->operatingPeriod }}
@if($ride->manufacturer)
Manufacturer
{{ $ride->manufacturer->name }}
@endif @if($ride->designer)
Designer
{{ $ride->designer->name }}
@endif @if($ride->rideModel)
Model
{{ $ride->rideModel->name }}
@endif
@if($ride->description)
Description
{{ $ride->description }}
@endif
{{-- Technical Details --}}

Technical Specifications

@if($ride->min_height_in)
Minimum Height
{{ $ride->min_height_in }} inches
@endif @if($ride->max_height_in)
Maximum Height
{{ $ride->max_height_in }} inches
@endif @if($ride->capacity_per_hour)
Hourly Capacity
{{ number_format($ride->capacity_per_hour) }} riders
@endif @if($ride->ride_duration_seconds)
Ride Duration
{{ $ride->ride_duration_seconds }} seconds
@endif
{{-- Roller Coaster Stats --}} @if($ride->coasterStats)

Roller Coaster Statistics

@if($showCoasterStats)
{{-- Track Details --}}
Track Type
{{ $ride->coasterStats->track_material->label() }}
Coaster Type
{{ $ride->coasterStats->roller_coaster_type->label() }}
Launch Type
{{ $ride->coasterStats->launch_type->label() }}
{{-- Physical Measurements --}}
Height
{{ $this->formatMeasurement($ride->coasterStats->height_ft, 'ft') }}
Length
{{ $this->formatMeasurement($ride->coasterStats->length_ft, 'ft') }}
Speed
{{ $this->formatMeasurement($ride->coasterStats->speed_mph, 'mph') }}
Max Drop
{{ $this->formatMeasurement($ride->coasterStats->max_drop_height_ft, 'ft') }}
Inversions
{{ $ride->coasterStats->inversions ?? 'N/A' }}
{{-- Train Configuration --}} @if($ride->coasterStats->train_style)
Train Style
{{ $ride->coasterStats->train_style }}
@endif
Number of Trains
{{ $ride->coasterStats->trains_count ?? 'N/A' }}
Cars per Train
{{ $ride->coasterStats->cars_per_train ?? 'N/A' }}
Seats per Car
{{ $ride->coasterStats->seats_per_car ?? 'N/A' }}
@endif
@endif {{-- Actions --}}
Edit Ride