diff --git a/app/Http/Controllers/Profile/ProfileBillingController.php b/app/Http/Controllers/Profile/ProfileBillingController.php index 8f17863..783f5c5 100644 --- a/app/Http/Controllers/Profile/ProfileBillingController.php +++ b/app/Http/Controllers/Profile/ProfileBillingController.php @@ -151,7 +151,7 @@ class ProfileBillingController extends Controller $planId = $plan->stripe_plan_id; // Only do something if the user is not already subscribed to this plan. - if ($user->subscribedToPlan($planId, 'default')) { + if ($user->subscribedToPrice($planId, 'default')) { return redirect()->route('profile.billing.index')->with('error', 'You did not select a different plan'); }