Overtrue\LaravelShoppingCart\Cart::getCart PHP Method

getCart() protected method

Get the carts content.
protected getCart ( ) : Collection
return Illuminate\Support\Collection
    protected function getCart()
    {
        $cart = $this->session->get($this->name);
        return $cart instanceof Collection ? $cart : new Collection();
    }