LaravelShoppingcart
LaravelShoppingcart copied to clipboard
Where we can found cart conditions?
Cart Conditions are very useful in terms of (coupons,discounts,sale,per-item sale and discounts etc. Like right now I need something like
$condition = new CartCondition(array(
'name' => 'VAT 12.5%',
'type' => 'tax',
'target' => 'subtotal',
'value' => '12.5%',
'attributes' => array(
'description' => 'Value added tax',
'more_data' => 'more data here'
)
));
but it is not present in this shopping cart package