mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 02:31:09 -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.
28 lines
1015 B
PHP
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> |