PHPackages                             felixl7/laravel-ivw - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. felixl7/laravel-ivw

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

felixl7/laravel-ivw
===================

IVW Integration for Laravel

v1.0(6y ago)04MITPHPPHP &gt;=7.2

Since Feb 9Pushed 6y ago1 watchersCompare

[ Source](https://github.com/FelixL7/laravel-ivw)[ Packagist](https://packagist.org/packages/felixl7/laravel-ivw)[ RSS](/packages/felixl7-laravel-ivw/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Laravel IVW Integration
=======================

[](#laravel-ivw-integration)

An easy [IVW](https://www.ivw.eu/) integration for Laravel Apps

Installation
------------

[](#installation)

You can install the package via Composer:

```
composer require felixl7/laravel-ivw
```

In Laravel 5.5 and up, the package will automatically register the service provider and facade

In Laravel 5.4 or below start by registering the package's service provider and facade:

```
// config/app.php

'providers' => [
    ...
    FelixL7\LaravelIvw\IvwServiceProvider::class,
],

'aliases' => [
    ...
    'Ivw' => FelixL7\LaravelIvw\IvwFacade::class,
],
```

*The facade is optional, but the rest of this guide assumes you're using the facade.*

Next, publish the config files:

```
php artisan vendor:publish --provider="FelixL7\LaravelIvw\IvwServiceProvider" --tag="config"
```

Optionally publish the view files. It's **not** recommended to do this unless necessary so your views stay up-to-date in future package releases.

```
php artisan vendor:publish --provider="FelixL7\LaravelIvw\IvwServiceProvider" --tag="views"
```

Configuration
-------------

[](#configuration)

The configuration file is fairly simple.

```
return [
    /**
     * By default, these keys values are empty strings.
     */
    //Angebotskennung; site/domain
    'st' => env('IVW_DEFAULT_ST', ''),

    //Seitencode
    'cp' => env('IVW_DEFAULT_CP', ''),

    //Frabo Steuerung
    'sv' => env('IVW_DEFAULT_SV', ''),

    //Kommentar
    'co' => env('IVW_DEFAULT_CO', ''),

    //Privacy Settings
    'ps' => env('IVW_DEFAULT_PS', ''),
    'use_ps' => env('IVW_USE_PS', false),

    //MCVD Aktivierung
    'sc' => env('IVW_DEFAULT_SC', ''),
    'use_sc' => env('IVW_USE_SC', false),

    //Übertragungsmethode
    'method' => env('IVW_METHOD', 0),

    /*
     * Enable or disable script rendering. Useful for local development. By default, it is disabled.
     */
    'enabled' => env('IVW_ENABLED', false),

    //Testmodus
    'test_mode' => env('IVW_TEST_MODE', false),

];
```

As you can see, you can set the Default values in your .env file.

Usage
-----

[](#usage)

You'll need to include IVW's script in the head section. Your iam\_data configuration will be in the body.

```
{{-- layout.blade.php --}}

    @include('ivw::head')
    {{-- ... --}}

    {{-- ... --}}
    @include('ivw::script')

```

Methods
-------

[](#methods)

```
// Check whether script rendering is enabled
$enabled = Ivw::isEnabled(); // true|false

// Enable and disable script rendering
Ivw::enable();
Ivw::disable();

//get the DataLayer
//returns IvwIamData, this has basic getter & setter
$iam_data = Ivw::getIamData();

//returns the iam_data
$json = $iam_data->getIamDataJson();
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2284d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4bc9b1672a8a3b4121dd8a2cb5414d3c65730f614218986c9da1e245db67d936?d=identicon)[FelixL7](/maintainers/FelixL7)

---

Top Contributors

[![FelixL7](https://avatars.githubusercontent.com/u/22714206?v=4)](https://github.com/FelixL7 "FelixL7 (5 commits)")

### Embed Badge

![Health badge](/badges/felixl7-laravel-ivw/health.svg)

```
[![Health](https://phpackages.com/badges/felixl7-laravel-ivw/health.svg)](https://phpackages.com/packages/felixl7-laravel-ivw)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
