mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 06:11:09 -05:00
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:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user