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.
This commit is contained in:
pacnpal
2025-06-23 21:31:05 -04:00
parent 5caa148a89
commit 97a7682eb7
62 changed files with 10532 additions and 210 deletions

View File

@@ -22,6 +22,11 @@ Route::get('/rides', function () {
return view('placeholder', ['title' => 'Rides', 'message' => 'Rides feature coming soon!']);
})->name('rides.index');
// Universal Listing System routes
Route::get('/manufacturers', function () {
return view('manufacturers-listing');
})->name('manufacturers.index');
Route::get('/search', function () {
return view('placeholder', ['title' => 'Search Results', 'message' => 'Search feature coming soon!']);
})->name('search');