cart = $cart; $this->location = $location; $this->shipping = $shipping; } /** * Returns count of cart. * * @param array $filter * * @return int */ public function count() { return 0; } /** * Find cart by slug. * * @param array $filter * * @return int */ public function cart($slug) { return $this->cart ->findBySlug($slig) ->toArray(); } }