We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89fc9ac commit f521e1cCopy full SHA for f521e1c
src/Core.php
@@ -72,6 +72,18 @@ public static function loadApplicationConfig()
72
if (storage()->exists(LibPath())) {
73
static::loadLibs();
74
}
75
+
76
+ if (
77
+ class_exists('Leaf\Billing\Stripe') ||
78
+ class_exists('Leaf\Billing\PayStack') ||
79
+ class_exists('Leaf\Billing\LemonSqueezy')
80
+ ) {
81
+ billing(Config::getStatic('mvc.config.billing'));
82
+ }
83
84
+ if (storage()->exists('app/index.php')) {
85
+ require 'app/index.php';
86
87
88
89
0 commit comments