我正在使用库存系统,我在收银员添加要购买的物品的部分。因此,我在该特定模块中使用的表是 sales 和 sale_items。所以关系是 1 sale 有很多 sale_items。
所以我的问题是。如何在不使用ajax的情况下一次性发送请求。目前我正在使用 ajax,但我的控制器需要身份验证。我关闭了身份验证以使 ajax 请求工作。下面是我想在没有 ajax 的情况下发送的示例请求正文。
sales{
date_sold: 04/01/2019,
discount: 2000,
branch_id
sales_item:
{
product_id: 1,
quantity: 20,
unit_price: 200
},
{
product_id: 2,
quantity: 40,
unit_price: 100
},
{
product_id: 3,
quantity: 50,
unit_price: 300
}
}
我想分别将这些数据插入到 sales 和 sales_item 表中。我如何在 Laravel 中处理它?
呼唤远方
米脂