Any website cannot use cookie without agree.
pinfort/laravel-cookie-confirm is a Laravel package for any website cannot use cookie without agree..
It currently has 2 GitHub stars and 23 downloads on Packagist (latest version v1.0.0).
Install it with composer require pinfort/laravel-cookie-confirm.
Discover more Laravel packages by pinfort
or browse all Laravel packages to compare alternatives.
Last updated
Any website cannot use cookie without agree.
composer require pinfort/laravel-cookie-confirm
Attention: Perhaps it is necessary to change the minimum stability of the composer...
php artisan vendor:publish
You will find three new files.
Add middleware to your kernel
in App\Http\Kernel.php near the line 38
protected $middlewareGroups = [
'web' => [
......
\Pinfort\LaravelCookieConfirm\Middleware\Confirm::class,
],
......
];