Crinsane / LaravelShoppingcart

A simple shopping cart implementation for Laravel
MIT License
3.67k stars 1.73k forks source link

Destroy cart #659

Open maxim8181 opened 3 years ago

maxim8181 commented 3 years ago

Hello Is there a way to destroy all carts of we do not know their name?

Thanks

bumbummen99 commented 3 years ago

You could delete all Carts from the cart table whereNotIn your known names but keep in mind thst carts could still be saved in sessions.

maxim8181 commented 3 years ago

Thanks for answer but i do not understand, i would like destroy if Is possible all carts not just the instanced one even if i do not know the name of the carts

bumbummen99 commented 3 years ago

Thanks for answer but i do not understand, i would like destroy if Is possible all carts not just the instanced one even if i do not know the name of the carts

As i said, check whereNotIn() https://laravel.com/docs/8.x/queries#additional-where-clauses

Also, afaik the instanced cart is not saved in DB, maybe you can just truncate the whole table without a where at all.