Closed IsbosetA closed 3 months ago
I have the same issue in Laravel 10
I have the same issue in Laravel 10
this is the solution
For solved it you only need to change $plan->planSubscriptions()->delete(); to $plan->subscriptions()->delete(); This error ocurred when you use $plan->delete(); method
the error ocurred for de fuction name
Fix on the newest release. Thank you
This error is in Model Plan,
For solved it you only need to change
$plan->planSubscriptions()->delete();
to$plan->subscriptions()->delete();
This error ocurred when you use$plan->delete();
method