Ejemplo n.º 1
0
 protected static function getCashPaymentSum()
 {
     return \Cache::remember('enterprise_cash_payment_sum', 60, function () {
         return \App\Models\Order::sum('cash_payment');
     });
 }