We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26ca92 commit 7d9d26dCopy full SHA for 7d9d26d
src/OpayoServiceProvider.php
@@ -30,7 +30,9 @@ public function boot()
30
31
$this->loadRoutesFrom(__DIR__.'/../routes/web.php');
32
33
- $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
+ if (! config('lunar.database.disable_migrations', false)) {
34
+ $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
35
+ }
36
37
Blade::directive('opayoScripts', function ($incVendor = true) {
38
$url = 'https://sandbox.opayo.eu.elavon.com/api/v1/js/sagepay.js';
0 commit comments