PHP code example of vendor_slug / package_slug

1. Go to this page and download the library: Download vendor_slug/package_slug library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

vendor_slug / package_slug example snippets


// app/Http/Kernel.php

...

//use it globally for all requests
protected $middleware = [
     ...
    \Benjaber98\LaravelHttps\Middlewares\ForceHttpMiddleware::class,
];
    
...

// Or use it globally for all web requests
protected $middlewareGroups = [
   'web' => [
       ...
       \Benjaber98\LaravelHttps\Middlewares\ForceHttpMiddleware::class,
   ],

...
//Or register it to use in routes
protected $routeMiddleware = [
   ...
   'force_https' => \Benjaber98\LaravelHttps\Middlewares\ForceHttpMiddleware::class,
];


    Route::group(['middleware' => ['force_https']], function () {
        Route::get('/', ['PageController', 'index']);
    });

    Route::get('/', ['PageController', 'welcome'])->middleware('force_https');

    public function __construct()
    {
       $this->middleware('force_https');
    }
bash
php artisan vendor:publish
bash


return [
    'force_in_local' => env('FORCE_HTTPS_IN_LOCAL', false),
];