当前位置: 首页>>代码示例>>PHP>>正文


PHP Authenticator::where方法代码示例

本文整理汇总了PHP中Authenticator::where方法的典型用法代码示例。如果您正苦于以下问题:PHP Authenticator::where方法的具体用法?PHP Authenticator::where怎么用?PHP Authenticator::where使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Authenticator的用法示例。


在下文中一共展示了Authenticator::where方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: store

 /**
  * Store a newly created resource in storage.
  *
  * @param  \Illuminate\Http\Request $request
  * @return \Illuminate\Http\Response
  */
 public function store(Request $request)
 {
     $user = $this->auth->user()->id;
     $count = $this->carrello->where('utente', '=', $user)->count();
     if ($count == 0) {
         return Response::json(array('code' => '500', 'msg' => 'KO', 'error' => 'No items into cart for user.'));
     }
     $carrello = $this->carrello->with('prodotti')->where('utente', '=', $user)->get();
     $totaleCarrello = number_format(round($request->get('cartTotal'), 2), 2);
     $scontoQuantita = number_format(round($request->get('discountUnits'), 2), 2);
     $scontoPagamento = number_format(round($request->get('discountPayment'), 2), 2);
     $costoSpedizione = number_format(round($request->get('shippingPrice'), 2), 2);
     $totaleCarrelloScontato = number_format(round($request->get('cartTotalDiscounted'), 2), 2);
     $tipoPagamento = $request->paymentType;
     $sconto = number_format(round($scontoPagamento + $scontoQuantita, 2), 2);
     //valido i dati di ingresso per la testata dell'ordine
     $data = array('utente' => $this->auth->user()->id, 'costo' => $totaleCarrello, 'costospedizione' => $costoSpedizione, 'sconto' => $sconto, 'tipopagamento' => $tipoPagamento);
     //validate images
     if (!$this->ordine->validate($data)) {
         $errors = $this->ordine->getErrors();
         return Response::json(array('code' => '500', 'msg' => 'KO', 'error' => $errors));
     }
     //salvo la testata
     $this->ordine->store($data);
     //salvo il dettaglio
     foreach ($carrello as $item) {
         $this->ordine->prodotti()->attach($item->prodotto, ['quantita' => $item->quantita, 'costo' => $item->prodotti->prezzo]);
     }
     //salvo lo stato
     $stato = $this->stato->where('descrizione', '=', 'LAVORAZIONE')->first();
     $this->ordine->stati()->attach($stato);
     $cliente = $this->auth->user()->clienti()->where('utente', '=', $this->auth->user()->id)->first();
     $nome = $cliente->nome . ' ' . $cliente->cognome;
     //ritorno
     $data = array('item_name' => $this->ordine->id, 'amount' => $totaleCarrelloScontato, 'return' => url('/admin/ordini/' . $this->ordine->id), 'name' => $nome, 'username' => $this->auth->user()->username);
     //cancello il carrello dell'utente
     foreach ($carrello as $item) {
         $this->carrello->destroy($item->id);
     }
     //tutto ok ora invio le mail di conferma
     $this->sendMail($this->ordine->id);
     return Response::json(array('code' => '200', 'msg' => 'OK', 'item' => $data));
 }
开发者ID:bobbylinux,项目名称:HolisticRemedies,代码行数:49,代码来源:OrdiniController.php


注:本文中的Authenticator::where方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。