Multiform Wizard / Stepper 在 laravel php 中保存数据?

发布于 2025-01-11 18:18:51 字数 136 浏览 0 评论 0原文

我需要使用(多表单向导或步进器)设计一个表单,将数据保存在不同的表中,假设用户填写了三个表单并将数据保存在三个不同的表中,下次用户登录时,表单应从第四阶段开始,并且用户还可以编辑保存表单,表格不同,它不保存在一张表格中如何在laravel中设计这样的多表格?

I need to design a form using (multiform wizard or stepper) that saves Data in different tables, Suppose a user fills three forms and saves the data in three different tables, the next time when user login the form should start from the 4th stage, and the user can also edit the save form, the tables are different it does not save in one table how to design such multiform in laravel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终止放荡 2025-01-18 18:18:51

这很简单,假设您已经在数据库中有数据,并且还准备了一个包含 4 个表单(任意数量)的 HTML 页面,如果您的表单全部放在一页上,则使用 DB 对象从数据库中查询所有数据或 eloquent 模型(可能来自一个表或不同的表),然后将数据传递给视图,然后使用 value="{{ $data->name }}" 属性填充输入字段,以进行保存每个表格您可以通过邮寄单独发送每个表格 该向导实用程序的方法

与设计和需求不同,如果您有进一步的帮助,请随时在下面评论

It is easy, Assume you have already data in the database and also have prepared either an HTML page with 4 forms (as many you want), if your forms are all placed on one page then query all the data from the database using DB object or eloquent model(maybe from one table or different) then pass the data to view, after that fill the input fields using value="{{ $data->name }}" attribute, for saving each form you can send each form separately via post method

this wizard utility is different to design and needs, if you have further help feel free to comment below

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文