cart() public static method

public static cart ( $user )
Example #1
0
 private function userCart()
 {
     if (Auth::check()) {
         return Store\Order::cart(Auth::user());
     } else {
         return new Store\Order();
     }
 }