Download the PHP package spatie/laravel-cookie-consent without Composer
On this page you can find all versions of the php package spatie/laravel-cookie-consent. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download spatie/laravel-cookie-consent
More information about spatie/laravel-cookie-consent
Files in spatie/laravel-cookie-consent
Package laravel-cookie-consent
Short Description Make your Laravel app comply with the crazy EU cookie law
License MIT
Homepage https://github.com/spatie/cookie-consent
Informations about the package laravel-cookie-consent
Simple, customizable cookie consent message for Laravel
This package adds a simple, customizable cookie consent message to your site. When the site loads, the banner appears and lets users consent to cookies. Once consent is given, the banner hides and stays hidden.
What this package does not:
- Include an option to 'Decline' all cookies, which might be required.
- Block trackers and cookies before consent. You need to handle this yourself.
- Include options for different consent categories like "Necessary" or "Marketing".
For more advanced cookie consent options in Laravel, consider these alternatives.
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
The package will automatically register itself.
Optionally you can publish the config-file:
This is the contents of the published config-file:
The cookie domain is set by the 'domain' key in config/session.php, make sure you add a value in your .env for SESSION_DOMAIN. If you are using a domain with a port in the url such as 'localhost:3000', this package will not work until you do so.
Usage
To display the dialog all you have to do is include this view in your template:
This will render the following dialog that, when styled, will look very much like this one.
The default styling provided by this package uses TailwindCSS v2 to provide a floating banner at the bottom of the page.
When the user clicks "Allow cookies" a laravel_cookie_consent
cookie will be set and the dialog will be removed from the DOM. On the next request, Laravel will notice that the laravel_cookie_consent
has been set and will not display the dialog again
Customising the dialog texts
If you want to modify the text shown in the dialog you can publish the lang-files with this command:
This will publish this file to resources/lang/vendor/cookie-consent/en/texts.php
.
If you want to translate the values to, for example, French, just copy that file over to resources/lang/vendor/cookie-consent/fr/texts.php
and fill in the French translations.
Customising the dialog contents
If you need full control over the contents of the dialog. You can publish the views of the package:
This will copy the index
and dialogContents
view files over to resources/views/vendor/cookie-consent
. You probably only want to modify the dialogContents
view. If you need to modify the JavaScript code of this package you can do so in the index
view file.
Using the middleware
Instead of including cookie-consent::index
in your view you could opt to add the Spatie\CookieConsent\CookieConsentMiddleware
to your kernel:
This will automatically add cookie-consent::index
to the content of your response right before the closing body tag.
Notice
We are not lawyers and can't provide legal advice. Consult legal professionals what rules apply to your project.
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security-related issues, please email [email protected] instead of using the issue tracker.
Credits
- Freek Van der Herten
- Willem Van Bockstal
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-cookie-consent with dependencies
illuminate/support Version ^10.0|^11.0
illuminate/view Version ^10.0|^11.0
illuminate/cookie Version ^10.0|^11.0
spatie/laravel-package-tools Version ^1.9