Overtrue\LaravelShoppingCart\Cart::associate PHP Method

associate() public method

Associated model.
public associate ( string $model ) : Cart
$model string The name of the model
return Cart
    public function associate($model)
    {
        if (!class_exists($model)) {
            throw new Exception("Invalid model name '{$model}'.");
        }
        $this->model = $model;
        return $this;
    }