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 13391f0 commit 18ef80aCopy full SHA for 18ef80a
src/AdminServiceProvider.php
@@ -51,7 +51,6 @@ public function boot()
51
if (file_exists($routes = admin_path('routes.php'))) {
52
$this->loadRoutesFrom($routes);
53
}
54
- if (config('admin.https')) \URL::forceScheme('https');
55
$this->registerPublishing();
56
57
src/Middleware/Bootstrap.php
@@ -10,6 +10,7 @@ class Bootstrap
10
{
11
public function handle(Request $request, Closure $next)
12
13
+ if (config('admin.https')) \URL::forceScheme('https');
14
Admin::bootstrap();
15
16
return $next($request);
0 commit comments