Naming advice for CustomEditPage
A quick naming question, hopefully someone's got some real experience doing this.
I'm making a totally custom Edit Page for a resource - entirely disregarding the built in
use Filament\Resources\Pages\EditRecord;
Would you say it's good practice to call it CustomEditPage
rather than EditPage
?1 Reply
It's going to be a multi-step form with various other custom UI bits - which is why I'm going with a custom page.
I did think about overwriting all the
EditRecord
fields, but that felt messier than starting from a fresh one
After playing around a bit - I'm currenty exploring having multiple Edit pages (all extending EditRecord) and a different URL for each step.
Which is a user-flow that we want (not having to complete the form to create it).
Just sharing my progress here in case someone else sees it, and has any input/opinions 🙂