fairhypo / agroutm
Library for Agro24 project to provide utm functionality
1.0.2
2017-02-20 13:00 UTC
This package is not auto-updated.
Last update: 2024-11-23 21:36:09 UTC
README
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)
- Email: yuriy.maslof@gmail.com