本文整理汇总了PHP中Authenticator::destroy方法的典型用法代码示例。如果您正苦于以下问题:PHP Authenticator::destroy方法的具体用法?PHP Authenticator::destroy怎么用?PHP Authenticator::destroy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Authenticator
的用法示例。
在下文中一共展示了Authenticator::destroy方法的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));
}