如何通过邮递员传递特定时间

时间:2019-03-28 09:54:15

标签: json laravel-5 laravel-5.2 postman lumen

I get the following error 我正在尝试访问一个API,该API从用户那里获取标题及其烹饪时间,并应用到12小时的分解时间上,但是问题是我使用的是邮递员,没有任何线索可以发送通过邮递员确定烹饪时间的日期或时间

我尝试发送时间请求,也使用dd来检查我插入的值是否采用正确的格式

$post =  Auth::user()->posts()->create([
                'user_id' => Auth::id(),
                'title' => $request->title,
                'cooked_time' => $request->cooked_time,
                $cooked_time = date('h:i:s',$request->cooked_time),
                dd($cooked_time),
                'dispose_time' => date('h:i:s',strtotime("+12 hours", strtotime($cooked_time))),

我想通过普通用户过去的食物煮熟时间,并添加12个小时

0 个答案:

没有答案