Implement academy analytics, billing, and web stories updates
This commit is contained in:
28
config/academy_billing.php
Normal file
28
config/academy_billing.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'enabled' => (bool) env('ACADEMY_BILLING_ENABLED', false),
|
||||
|
||||
'subscription_name' => env('ACADEMY_STRIPE_SUBSCRIPTION_NAME', 'academy'),
|
||||
|
||||
'plans' => [
|
||||
'creator_monthly' => [
|
||||
'label' => 'Creator Monthly',
|
||||
'tier' => 'creator',
|
||||
'interval' => 'monthly',
|
||||
'amount' => '4.99',
|
||||
'currency' => 'EUR',
|
||||
'stripe_price_id' => env('ACADEMY_CREATOR_MONTHLY_PRICE_ID'),
|
||||
'featured' => false,
|
||||
],
|
||||
'pro_monthly' => [
|
||||
'label' => 'Pro Monthly',
|
||||
'tier' => 'pro',
|
||||
'interval' => 'monthly',
|
||||
'amount' => '9.99',
|
||||
'currency' => 'EUR',
|
||||
'stripe_price_id' => env('ACADEMY_PRO_MONTHLY_PRICE_ID'),
|
||||
'featured' => true,
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user