PHP code example of webdevartisan / laravel-shield

1. Go to this page and download the library: Download webdevartisan/laravel-shield 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/ */

    

webdevartisan / laravel-shield example snippets


protected $middlewareGroups = [
    'web' => [
        \Webdevartisan\LaravelShield\Http\Middleware\BlockMaliciousUsers::class,
    ],
];

protected $middleware = [
        \Webdevartisan\LaravelShield\Http\Middleware\BlockMaliciousUsers::class,
    ];

php artisan vendor:publish --provider="Webdevartisan\LaravelShield\LaravelShieldServiceProvider" --tag="config"