nickdekruijk/cookiewall

A simple cookie accept popup for EU laws

dev-master 2022-04-12 09:19 UTC

This package is auto-updated.

Last update: 2024-04-12 13:44:36 UTC


README

According to EU laws visitors should opt-in for all tracking cookies/pixels/code. This package adds a simple 'Accept Cookies' popup to your Laravel Application.

Installation

To install package use composer require nickdekruijk/cookiewall

Publish the config file in case you want to customize it

php artisan vendor:publish --provider=NickDeKruijk\\Cookiewall\\CookiewallServiceProvider

For Laravel version lower then 5.5 add the Service Provider to the 'providers' array in config/app.php

NickDeKruijk\Cookiewall\CookiewallServiceProvider::class,

Frontend

Add this to every view/page where you want to show the popup

@include('cookiewall::show')

And wrap any code that places tracking cookies/pixels/code with the cookiewallAccept() helper, for example like this:

@if (cookiewallAccept())
// Your tracking code here
@endif

And style the popup as you like, for example:

.cookiewall-container {position:fixed;bottom:0;left:0;right:0;background-color:red;text-align:center;padding:50px;z-index:9999;color:#fff}
.cookiewall-button {display:inline-block;padding:10px 20px;border:2px solid #fff;border-radius:5px;text-decoration:none;color:inherit;margin:10px}
.cookiewall-button:hover {background-color:rgba(255,255,255,0.5)}
.cookiewall-button-accept {background-color:#fff;color:red}
.cookiewall-button-accept:hover {background-color:rgba(255,255,255,0.8)}