Overtrue\LaravelShoppingCart\Cart::associate PHP 메소드

associate() 공개 메소드

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