示例#1
0
文件: Widget.php 项目: awme/stocket
 /**
  * [getSales]
  * Estadisticas de formas de pago
  * @return [array] [data]
  */
 public function getSales()
 {
     $cash = count(Sale::where('payment', trans('awme.stocket::lang.invoice.cash'))->get());
     $debit = count(Sale::where('payment', trans('awme.stocket::lang.invoice.debit'))->get());
     $credit_card = count(Sale::where('payment', trans('awme.stocket::lang.invoice.credit_card'))->get());
     $current_account = count(Sale::where('payment', trans('awme.stocket::lang.invoice.current_account'))->get());
     $total = count(Sale::all()->toArray());
     $sales = ['cash' => $cash, 'debit' => $debit, 'credit_card' => $credit_card, 'current_account' => $current_account, 'total' => $total];
     return $sales;
 }