input('code'))) { abort(500, __('Coupon cannot be empty')); } $coupon = Coupon::where('code', $request->input('code'))->first(); if (!$coupon) { abort(500, __('Invalid coupon')); } if ($coupon->limit_use <= 0 && $coupon->limit_use !== NULL) { abort(500, __('This coupon is no longer available')); } if (time() < $coupon->started_at) { abort(500, __('This coupon has not yet started')); } if (time() > $coupon->ended_at) { abort(500, __('This coupon has expired')); } if ($coupon->limit_plan_ids) { if (!in_array($request->input('plan_id'), $coupon->limit_plan_ids)) { abort(500, __('The coupon code cannot be used for this subscription')); } } return response([ 'data' => $coupon ]); } }