Browse Source

fixed https on pagination

= 4 years ago
parent
commit
d103c041d1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Providers/AppServiceProvider.php

+ 1 - 0
app/Providers/AppServiceProvider.php

@@ -26,6 +26,7 @@ class AppServiceProvider extends ServiceProvider
     {
     {
         if (config('app.env') !== 'local') {
         if (config('app.env') !== 'local') {
             $url->forceScheme('https');
             $url->forceScheme('https');
+            $this->app['request']->server->set('HTTPS','on');
         }
         }
     }
     }
 }
 }