= 6ddde416cf feature: introduce Choices component and service management entities
- Added `Choices` component for dropdowns with search and multi-selection functionality.
- Implemented foundational classes for service connection:
  - `ConnectServiceData`
  - `ConnectedServiceFactory`
  - `ConnectedServicesService`
- Added `ConnectServiceForm` Livewire component for managing service connections.
- Introduced shared utility traits (`HasAttributeHelpers`) and error components.
- Added components for generic use: `Input` and `ListItem`.
2026-05-13 09:52:03 +00:00

18 lines
492 B
PHP

<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Route;
Route::view('/', 'welcome')->name('home');
Route::group(['middleware' => ['auth', 'verified']], function (): void {
Route::livewire('dashboard', 'pages::dashboard')->name('dashboard');
Route::prefix('connected-services')->name('connected-services.')->group(function (): void {
Route::livewire('create', 'pages::connected-services.create')->name('create');
});
});
require __DIR__.'/settings.php';