fairhypo/agroutm

Library for Agro24 project to provide utm functionality

Downloads

18

Stars

0

Version

1.0.2

composer require fairhypo/agroutm

Library for Agro24 project to add some utm functionality.

Installation

Pull this package in through Composer.


    {
        "require": {
            "fairhypo/agroutm": "^1.0"
        }
    }

Laravel 5.* Integration

Add the service provider to your config/app.php file:


    'providers'     => array(

        //...
        Fairhypo\Agroutm\AgroutmServiceProvider::class,

    ),
    

Publish the migrations


    php artisan vendor:publish --provider="Fairhypo\Agroutm\AgroutmServiceProvider"
    

... and use it


    php artisan migrate
    

Add the middleware to your App\Http\Kernel.php file:


    protected $routeMiddleware = [
            //...
            'agroutm' => \Fairhypo\Agroutm\Middleware\AgroUtm::class,
        ];

Then use in your routes:


    Route::get('/', function () {
        //
    })->middleware('agroutm');

... or include into other middleware:


    protected $middlewareGroups = [
        'web' => [
            //...
            'agroutm',
        ],
        //...
    ];

Usage

Using Agroutm middleware

You do not need to do something else. Just test that everything works fine.

License

This package is open-sourced software licensed under the MIT license

Contact

Yuriy Maslov (developer)

FairHypo

Author

FairHypo