I can't use of coupon in cart section because of this error (a numeric value encountered) When I add a product to the card section and when I want to add the discount coupon , the coupon is not added and it gives the above error***
Session::put('coupon',[
'coupon_name' => $coupon->coupon_name,
'coupon_discount' => $coupon->coupon_discount,
'discount_amount' => round(Cart::total() * $coupon->coupon_discount/100),
'total_amount' => round(Cart::total() - cart::total() * $coupon->coupon_discount/100),
]);