mordisacks/laravel-force-https

Laravel middleware for forcing https connection

Downloads

5352

Stars

3

Version

1.0.1

Laravel Force HTTPS Middleware

Install

Require this package with composer using the following command:

composer require mordisacks/laravel-force-https

After updating composer, add the service provider to the providers array in config/app.php

MordiSacks\LaravelForceHttps\ServiceProvider::class,

Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

To install this package on only development systems, add the --dev flag to your composer command:

composer require --dev mordisacks/laravel-force-https

Usage

Just add forceHttps to your middleware list

Route::group(['middleware' => ['forceHttps']], function () {
    Route::get('/home', 'HomeController@index')->name('home');
});

Or in a controller

    public function __construct()
    {
        $this->middleware('forceHttps');
    }
MordiSacks

Author

MordiSacks