Implement academy analytics, billing, and web stories updates

This commit is contained in:
2026-05-26 07:27:29 +02:00
parent 456c3d6bb0
commit 0b33a1b074
177 changed files with 27360 additions and 2685 deletions

View 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,
],
],
];