Missing required parameter on list URL
Hey,
I am trying to list my resource (accessing /admin/resource/) but I get
Missing required parameter for [Route: filament.admin.resources.servers.edit] [URI: admin/servers/{record}/edit] [Missing parameter: record].
even though I am not trying to edit it.
I also tried setting the Edit page to be /edit/{record} yet that also did not work. All I have done is configured my create page, edit page is still not touched and I have added a few columns in Table.
I also tried deleting the resource and redoing it - did not work then too.3 Replies
After removing edit action it works btw, removing it from the getPages
Sort of unrelated - looks like even though the ID column exists, since I have a uuid column, it is using that - not the ID
One other possible issue is that you are putting a route of
resource/records/{something}
before another general route of resource/records/
in getPages()
the index pages should always come first
just a note.not sure but it was a very very dumb fix
i dont know what i did, i was doing almost everything