code16/cookie-consent-js

Cookie consent handled front-only
3,647
Install
composer require code16/cookie-consent-js
Latest Version:v1.1.1
PHP:>=8.0
Last Updated:May 11, 2026
Links: GitHub  ·  Packagist
Maintainer: code16

Cookie consent

Setup

composer require code16/cookie-consent-js

Required: publish assets (add this in composer.json post-autoload-dump scripts)

php artisan vendor:publish --provider='Code16\CookieConsent\CookieConsentServiceProvider' --tag=assets --force

You may publish the config file:

php artisan vendor:publish --provider="Code16\CookieConsent\CookieConsentServiceProvider" --tag=config

And the lang file:

php artisan vendor:publish --provider="Code16\CookieConsent\CookieConsentServiceProvider" --tag=lang

Usage

In your blade layout

<head>
    {{-- ... --}}
    <x-cookie-consent::scripts />
    <x-cookies-allowed category="analytics">
        <script>
          {{-- some injected cookies --}}
        </script>
    </x-cookies-allowed>
</head>

Also you must declare the cookie category in config/cookie-consent.php as follow

[
    'categories' => [
        'system' => [
            'required' => true,
            'services' => [
                [
                  'cookies' => []
                ]
            ]
        ],
        'analytics' => [
            'services' => [
                'google-analytics' => [
                    'cookies' => [
                        ['name' => '_ga', 'lifetime' => '2 years']
                    ]
                ]
            ]
        ],
    ]
];

Categories marked as required are cannot be opt-out by the user.

To provide explanation texts in the manage dialog, add content to the lang file:

[
    'manage_modal' => [
        'title' => 'Manage cookies',
        'description' => 'About cookies...',
        'categories' => [
            'system' => [
                'title' => 'System cookies',
                'description' => "Description text about system cookies",
            ],
            'analytics' => [
                'title' => 'Analytics cookies',
                'description' => "Description text about analytics cookies",
            ],
        ],
    ]
];

Show the manage modal from a link (e.g. cookies page)

In the page:

   <a href="#manage-cookies">Open manage cookies modal</a>

Related Packages

livewire/flux

The official UI component library for Livewire.

10,567,624 975
infyomlabs/adminlte-templates

AdminLTE templates for InfyOm Laravel Generator

1,640,521 266
garygreen/pretty-routes

Pretty routes for Laravel 5+

1,370,595 649
infyomlabs/swagger-generator

Swagger Generator for InfyOm Laravel Generator

1,119,581 114
snowfire/beautymail

Send beautiful html emails with Laravel

769,772 1,313