Giter VIP home page Giter VIP logo

Comments (7)

lukepolo avatar lukepolo commented on June 16, 2024

You can call \LaraCart::update(), but that seems to be bug and should be saved directly after you call updateItem. Will have to look to see whats wrong.

Also you should be able todo

item->title= 'asd';

Are you saying that one doens't seem to update either?

from laracart.

daniel-seitz avatar daniel-seitz commented on June 16, 2024

yes.

from laracart.

lukepolo avatar lukepolo commented on June 16, 2024
 /**
     * Updates an items attributes
     *
     * @param $itemHash
     * @param $key
     * @param $value
     *
     * @return CartItem
     *
     * @throws Exceptions\InvalidPrice
     * @throws Exceptions\InvalidQuantity
     */
    public function updateItem($itemHash, $key, $value)
    {
        if (empty($item = $this->getItem($itemHash)) === false) {
            $item->$key = $value;
        }
        $item->generateHash();
        $this->update();
        return $item;
    }

Should update appropriately. Your not doing a dd or a dump on the page are you? dd for testing this are you ? If so it will not write to sessions when you do that.

from laracart.

lukepolo avatar lukepolo commented on June 16, 2024

I will test this out ASAP, thanks for brining it to my attention.

from laracart.

daniel-seitz avatar daniel-seitz commented on June 16, 2024

Hi Luke, I solved it.

After looking at your code - I like the cleanliness and comments, wish everybody would code like that - I found that there are new configuration options which I didn't publish. cross_devices broke my neck here. Mainly my mistake, an isset would circumvent this but then I should be smarter.

Thanks for your quick reply.

from laracart.

lukepolo avatar lukepolo commented on June 16, 2024

Ill add that check! Thanks for debugging , feel free to make any PR's as well~

from laracart.

lukepolo avatar lukepolo commented on June 16, 2024

I made the fix for other config options, but not for cross devices, the default value should come into check and provide false. So not sure why that would cause issues.

from laracart.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.