我正在开发一个使用Angular-7作为前端和Laravel-5.8作为后端的客户端门户应用程序。通过下面的Laravel查询(API),任何访问该网站的人都可以发送报价(是否注册):
test['Country'] = np.where(test['State'] in us_state_abbrev.values(), "USA", test['Country'])
我想编写另一个Laravel查询(API),将上面的查询保存到数据库中后,将立即检索该信息并将其显示在屏幕上。我该如何实现?
答案 0 :(得分:1)
您可以使用:
return response()->json([
'message' => 'Quote Successfully Sent!',
'Data'=> $clientquote
], 201);
或:
return response()->json([
'message' => 'Quote Successfully Sent!',
'Data'=> ClientQuote::latest()->first()
], 201);