本文整理汇总了PHP中app\Menu::select方法的典型用法代码示例。如果您正苦于以下问题:PHP Menu::select方法的具体用法?PHP Menu::select怎么用?PHP Menu::select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Menu
的用法示例。
在下文中一共展示了Menu::select方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: computeOrder
public function computeOrder(Request $request)
{
if ($request->isMethod('post')) {
$main = Menu::select('id', 'description', 'price')->where('id', $request->get("maindish"))->first();
$side = Menu::select('id', 'description', 'price')->where('id', $request->get("sidedish"))->first();
$rice = Menu::select('id', 'description', 'price')->where('id', $request->get("rice"))->first();
$total = 0;
$is_combo = false;
# check if combo meal is present;
if (!is_null($main) && !is_null($side) && !is_null($rice)) {
$is_combo = true;
$total = 60.0;
}
if (!is_null($main)) {
if (!$is_combo) {
$total += $main->price;
}
$info['main_dish'] = $main->toJson();
}
if (!is_null($side)) {
if (!$is_combo) {
$total += $side->price;
}
$info['side_dish'] = $side->toJson();
}
if (!is_null($rice)) {
if (!$is_combo) {
$total += $rice->price;
}
$info['rice'] = $rice->toJson();
}
if ($request->has('extra')) {
foreach ($request->get('extra') as $order_id) {
$extra = Menu::select('id', 'description', 'price')->where('id', $order_id)->get()->first();
$total += $extra->price;
$info['extra'][] = $extra->toJson();
}
$info['extra'] = json_encode($info['extra']);
}
dd($info);
$info['user_id'] = Auth::user()->id;
$order = Order::create($info);
return view('userorder.success', ['total' => $total]);
}
if (count($request->all()) < 1) {
return redirect('/order/step/2');
}
}