From fec9f5bc039c28534dc97914e8fe05dd672fee3c Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Fri, 15 Apr 2022 10:44:59 +0700 Subject: [PATCH] feat: force https --- routes/web.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/web.php b/routes/web.php index 30cf343..59cdaf2 100755 --- a/routes/web.php +++ b/routes/web.php @@ -13,6 +13,8 @@ use Illuminate\Support\Facades\Route; | */ +\URL::forceScheme('https'); + Route::get('/', "SecurityController@initSystem"); Route::get('/login', "SecurityController@viewLogin")->name('login'); Route::get('/forgot/password', "SecurityController@viewForgotPassword");