{{-- Mobile Layout (320px - 767px) --}}
{{-- Mobile Header with Search --}}
{{-- Search Input --}}
{{-- Role Filter Buttons --}}
{{-- Industry Statistics Banner --}}

Industry Overview

{{ $industryStats['total_operators'] ?? 0 }}
Total Operators
{{ $industryStats['mixed_role'] ?? 0 }}
Multi-Role
{{-- Operator Cards --}}
@forelse($operators as $operator)
{{-- Operator Header --}}

{{ $operator->name }}

@if($operator->location)

{{ $operator->location->city }}, {{ $operator->location->country }}

@endif
@if($operator->market_influence_score)
{{ number_format($operator->market_influence_score, 1) }}/100
Influence
@endif
{{-- Role Badges --}}
@if($operator->parks_count > 0) Operator ({{ $operator->parks_count }} parks) @endif @if($operator->manufactured_rides_count > 0) Manufacturer ({{ $operator->manufactured_rides_count }} rides) @endif @if($operator->designed_rides_count > 0) Designer ({{ $operator->designed_rides_count }} rides) @endif
{{-- Key Metrics --}}
@if($operator->founded_year)
{{ $operator->founded_year }}
Founded
@endif @if($operator->industry_sector)
{{ ucfirst($operator->industry_sector) }}
Sector
@endif @if($operator->company_size_category)
{{ ucfirst($operator->company_size_category) }}
Size
@endif
@empty

No operators found

Try adjusting your search or filters.

@endforelse
{{-- Mobile Pagination --}} @if($operators->hasPages())
{{ $operators->links('pagination.mobile') }}
@endif
{{-- Tablet Layout (768px - 1023px) --}} {{-- Desktop Layout (1024px+) --}}