count(): Parameter must be an array or an object that implements Countable error in php

This is because you are counting on ‘NULL’, Try it like this:

.
.
.
else
{
    $cart = [];
}

Leave a Comment