ecrmnn/laravel-https is a Laravel package for force https in your laravel application.
It currently has 60 GitHub stars and 154.013 downloads on Packagist (latest version 1.0.7).
Install it with composer require ecrmnn/laravel-https.
Discover more Laravel packages by ecrmnn
or browse all Laravel packages to compare alternatives.
Last updated

Generate HTTPS-links and redirect all requests to HTTPS. Also works with load balancing, AWS, Heroku and other services
composer require ecrmnn/laravel-https
providers in config/app.php\Ecrmnn\LaravelHttps\Providers\ServiceProvider::class,
$middleware in app/Http/Kernel.php\Ecrmnn\LaravelHttps\Http\Middleware\ForceHttps::class,
HTTPS will only be forced when env('HTTPS') is set to true
HTTPS=true
LaravelHTTPS forces the URL scheme in Laravel to use the HTTPS prefix for all links generated using url()
and route(). That mean that all your links can be converted to use HTTPS just by installing LaravelHTTPS
With the middleware included; ForceHttps, you can simply specify that as a global middleware and all requests
will be redirected correctly when accessing a non-HTTPS URL.
MIT © Daniel Eckermann