Filament Reserved Keywords?
I have a model called
Message
when I try to create a message in Filament, admin/messages/create
returns a 404.
Is messages
or message
a reserved keyword? Can't seem to pinpoint why this is occuring otherwise.5 Replies
Did you create your Resource?
It's hard to help without any code.
1. Create a
Message
model, then a resource
2. admin/messages/create
is a 404
Sorry - updated. Thanks!Order is important: You move the
view
route before the create
route. Now it's looking for a message with ID create
:
Ah perfect. That was it. Thanks so much