© 2026 Hedgehog Software, LLC
<?php namespace App\Filament\Investigador\Resources\Sica\ProyectoResource\Pages; use App\Filament\Investigador\Resources\Sica\ProyectoResource; use Filament\Actions; use Filament\Resources\Pages\EditRecord; class EditDates extends EditRecord { protected static string $resource = ProyectoResource::class; }
public static function getPages(): array { return [ 'fechas'=>Pages\EditDates::route('/{record}/fechas'), ]; }
Livewire\Exceptions\ComponentNotFoundException:Unable to find component: [app.filament.investigador.resources.sica.proyecto-resource.pages.edit-dates]
php artisan route:list --name=filament
GET|HEAD path/to/proyectos/{record}/fechas filament.investigador.resources.sica.proyectos.fechas › App\Filament…