Overtrue\LaravelShoppingCart\Cart::save PHP Method

save() protected method

Sync the cart to session.
protected save ( Collection | null $cart ) : Collection
$cart Illuminate\Support\Collection | null The new cart content
return Illuminate\Support\Collection
    protected function save($cart)
    {
        $this->session->put($this->name, $cart);
        return $cart;
    }