Inheritance: extends Illuminate\Support\Facades\Facade
 /**
  * Auth
  */
 public function getTotalAnnouncesCart()
 {
     $data['subtotal'] = LaraCart::subTotal($tax = false, $format = true, $withDiscount = true);
     $data['totaldiscount'] = LaraCart::totalDiscount($formatted = false);
     $data['taxtotal'] = LaraCart::taxTotal($formatted = false);
     $data['total'] = LaraCart::total($formatted = false, $withDiscount = true);
     return response()->json(['data' => $data, 'state' => true]);
 }