mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-28 19:10:40 +00:00
Stripe get plans fix
This commit is contained in:
@@ -197,7 +197,9 @@ class StripeService
|
|||||||
public function getPlans()
|
public function getPlans()
|
||||||
{
|
{
|
||||||
// Get stripe plans
|
// Get stripe plans
|
||||||
$stripe_plans = $this->stripe->plans()->all();
|
$stripe_plans = $this->stripe->plans()->all([
|
||||||
|
'limit' => 100,
|
||||||
|
]);
|
||||||
|
|
||||||
// Plans container
|
// Plans container
|
||||||
$plans = [];
|
$plans = [];
|
||||||
@@ -226,7 +228,9 @@ class StripeService
|
|||||||
public function getActivePlans()
|
public function getActivePlans()
|
||||||
{
|
{
|
||||||
// Get stripe plans
|
// Get stripe plans
|
||||||
$stripe_plans = $this->stripe->plans()->all();
|
$stripe_plans = $this->stripe->plans()->all([
|
||||||
|
'limit' => 100,
|
||||||
|
]);
|
||||||
|
|
||||||
// Plans container
|
// Plans container
|
||||||
$plans = [];
|
$plans = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user