Files
thrillwiki_laravel/resources/views/livewire/rides-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

19 lines
581 B
PHP

<div>
{{-- Universal Listing System Integration --}}
<x-universal-listing
:entity-type="$entityType"
:items="$items"
:search="$search"
:categories="$categories"
:opening-year-from="$openingYearFrom"
:opening-year-to="$openingYearTo"
:sort-by="$sortBy"
:view-mode="$viewMode"
wire:model.live="search"
wire:model.live="categories"
wire:model.live="openingYearFrom"
wire:model.live="openingYearTo"
wire:model.live="sortBy"
wire:model.live="viewMode"
/>
</div>