mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 06:51:10 -05:00
- 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.
19 lines
581 B
PHP
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> |