Files
thrillwiki_laravel/resources/views/livewire/manufacturers-listing-universal.blade.php
pacnpal 97a7682eb7 Add Livewire components for parks, rides, and manufacturers
- Implemented ParksLocationSearch component with loading state and refresh functionality.
- Created ParksMapView component with similar structure and functionality.
- Added RegionalParksListing component for displaying regional parks.
- Developed RidesListingUniversal component for universal listing integration.
- Established ManufacturersListing view with navigation and Livewire integration.
- Added feature tests for various Livewire components including OperatorHierarchyView, OperatorParksListing, OperatorPortfolioCard, OperatorsListing, OperatorsRoleFilter, ParksListing, ParksLocationSearch, ParksMapView, and RegionalParksListing to ensure proper rendering and adherence to patterns.
2025-06-23 21:31:05 -04:00

28 lines
1015 B
PHP

<div>
{{-- Universal Listing System Integration --}}
<x-universal-listing
:entity-type="$entityType"
:items="$manufacturers"
:has-active-filters="$hasActiveFilters"
:view-mode="$viewMode"
:sort-by="$sortBy"
:sort-direction="$sortDirection"
:search="$search"
:per-page="$perPage"
:specializations="$specializations"
:total-rides-range="$totalRidesRange"
:industry-presence-range="$industryPresenceRange"
:founded-year-range="$foundedYearRange"
:active-only="$activeOnly"
:innovation-leaders-only="$innovationLeadersOnly"
wire:model.live="search"
wire:model.live="specializations"
wire:model.live="totalRidesRange"
wire:model.live="industryPresenceRange"
wire:model.live="foundedYearRange"
wire:model.live="activeOnly"
wire:model.live="innovationLeadersOnly"
wire:model.live="sortBy"
wire:model.live="viewMode"
/>
</div>