Send form data from landing page to admin panel
I have a form on a landing page that the users fill out and I want to send the form data to be added to a table on a resource instead of doing it in the admin panel. Is it possible to do this in filament?
Solution:Jump to solution
Yes. You can use the
form-builder
package on it's own without the admin panel. Check the form-builder docs.
Build the form, store the data in the DB and in the Admin Panel use a normal resource....3 Replies
Solution
Yes. You can use the
form-builder
package on it's own without the admin panel. Check the form-builder docs.
Build the form, store the data in the DB and in the Admin Panel use a normal resource.Ooooh, I see. Thanks! I was under the assumption that form builder was part of the admin panel so I didn't bother reading the whole docs lol
Those are all separated packages that can be used on their own. The panel builder includes all the others