Refactored Filament Livewire components and views. Introduced separate CreateFilament component with route-based navigation. Simplified and cleaned up code by removing legacy modals and unused properties. Updated migrations, table layouts, and styles for consistency.

This commit is contained in:
2025-12-15 01:20:04 +01:00
parent 4759df9077
commit c7671b93b1
15 changed files with 461 additions and 645 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ Route::middleware([
// Filaments
Route::get('filaments', Filament::class)->name('filaments.index');
Route::get('filaments/create', Filament::class)->name('filaments.create');
Route::get('filaments/create', \App\Livewire\Filament\CreateFilament::class)->name('filaments.create');
Route::get('filaments/{filament}/edit', \App\Livewire\Filament\EditFilament::class)->name('filaments.edit');
Route::get('filaments/{filament}', \App\Livewire\Filament\ShowFilament::class)->name('filaments.show');