@props([
'analyticsId' => config('cookie-consent.analytics_id'),
'cookieName' => config('cookie-consent.cookie_name', 'cookie_consent'),
'cookieLifetime' => config('cookie-consent.cookie_lifetime', 365),
'showAnalyticsInfo' => true,
'showCurrentSettings' => true,
'showChangeButton' => true,
'colors' => config('cookie-consent.colors', []),
])
@php
$colors = array_merge(
[
'primary' => '#009bdd',
'primary_hover' => '#0071a8',
],
$colors ?? [],
);
@endphp
merge(['class' => 'cookie-privacy-info']) }}>
{{-- Aktuelle Cookie-Einstellungen --}}
@if ($showCurrentSettings)
{{ __('cookie-consent::cookie-consent.privacy_info.current_settings_title') }}
{{-- Technisch notwendig --}}
{{ __('cookie-consent::cookie-consent.privacy_info.essential_cookies') }}
{{ __('cookie-consent::cookie-consent.status.active') }}
{{-- Analyse- und Marketing-Cookies (immer anzeigen) --}}
{{ __('cookie-consent::cookie-consent.privacy_info.analytics_marketing_cookies') }}
{{ __('cookie-consent::cookie-consent.status.active') }}
{{ __('cookie-consent::cookie-consent.status.inactive') }}
{{-- Keine Einstellung vorhanden --}}
{{ __('cookie-consent::cookie-consent.status.no_consent') }}
{{-- Button zum Ändern --}}
@if ($showChangeButton)
@endif
@endif
{{-- Google Analytics Informationen --}}
@if ($showAnalyticsInfo && $analyticsId)
{{ __('cookie-consent::cookie-consent.google_analytics.title') }}
{{ __('cookie-consent::cookie-consent.google_analytics.intro') }}
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.title') }}
-
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.tracking_id') }}:
{{ $analyticsId }}
-
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.ip_anonymization') }}:
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.ip_anonymization_value') }}
-
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.consent_mode') }}:
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.consent_mode_value') }}
-
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.cookie_duration') }}:
{{ __('cookie-consent::cookie-consent.google_analytics.technical_details.cookie_duration_value', ['days' => $cookieLifetime]) }}
{{ __('cookie-consent::cookie-consent.google_analytics.purpose.title') }}
{{ __('cookie-consent::cookie-consent.google_analytics.purpose.text') }}
{{ __('cookie-consent::cookie-consent.google_analytics.ip_anonymization.title') }}
{{ __('cookie-consent::cookie-consent.google_analytics.ip_anonymization.text') }}
{{ __('cookie-consent::cookie-consent.google_analytics.legal_basis.title') }}
{{ __('cookie-consent::cookie-consent.google_analytics.legal_basis.text') }}
{{ __('cookie-consent::cookie-consent.google_analytics.cookies.title') }}
|
{{ __('cookie-consent::cookie-consent.google_analytics.cookies.table.name') }}
|
{{ __('cookie-consent::cookie-consent.google_analytics.cookies.table.purpose') }}
|
{{ __('cookie-consent::cookie-consent.google_analytics.cookies.table.duration') }}
|
@foreach (__('cookie-consent::cookie-consent.google_analytics.cookies.list') as $cookieName => $cookie)
| {{ $cookieName }} |
{{ $cookie['purpose'] }} |
{{ $cookie['duration'] }} |
@endforeach
{{ __('cookie-consent::cookie-consent.google_analytics.objection.title') }}
{{ __('cookie-consent::cookie-consent.google_analytics.objection.text') }}
- {{ __('cookie-consent::cookie-consent.google_analytics.objection.options.revoke') }}
-
{{ __('cookie-consent::cookie-consent.google_analytics.objection.options.addon') }}
tools.google.com/dlpage/gaoptout
{{ __('cookie-consent::cookie-consent.google_analytics.more_info.title') }}
{{ __('cookie-consent::cookie-consent.google_analytics.more_info.text') }}
policies.google.com/privacy
@endif