mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-17 15:52:15 +00:00
31 lines
743 B
PHP
31 lines
743 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
// Manage autoload migrations
|
|
'autoload_migrations' => true,
|
|
|
|
// Subscriptions Database Tables
|
|
'tables' => [
|
|
|
|
'plans' => 'plans',
|
|
'plan_features' => 'plan_features',
|
|
'plan_subscriptions' => 'plan_subscriptions',
|
|
'plan_subscription_usage' => 'plan_subscription_usage',
|
|
|
|
],
|
|
|
|
// Subscriptions Models
|
|
'models' => [
|
|
|
|
'plan' => \Rinvex\Subscriptions\Models\Plan::class,
|
|
'plan_feature' => \Rinvex\Subscriptions\Models\PlanFeature::class,
|
|
'plan_subscription' => \Rinvex\Subscriptions\Models\PlanSubscription::class,
|
|
'plan_subscription_usage' => \Rinvex\Subscriptions\Models\PlanSubscriptionUsage::class,
|
|
|
|
],
|
|
|
|
];
|