An easy way to integrate Google Analytics with Laravel.
cornford/googlitics is a Laravel package for an easy way to integrate google analytics with laravel..
It currently has 32 GitHub stars and 10.218 downloads on Packagist (latest version v3.0.0).
Install it with composer require cornford/googlitics.
Discover more Laravel packages by cornford
or browse all Laravel packages to compare alternatives.
Last updated
Think of Googlitics as an easy way to integrate Google Analytics with Laravel, providing a variety of helpers to speed up the utilisation of application tracking. These include:
Analytics::trackPageAnalytics::trackScreenAnalytics::trackEventAnalytics::trackTransactionAnalytics::trackItemAnalytics::trackMetricAnalytics::trackExceptionAnalytics::trackCustomAnalytics::renderBegin by installing this package through Composer. Edit your project's composer.json file to require cornford/googlitics.
"require": {
"cornford/googlitics": "3.*"
}
Next, update Composer from the Terminal:
composer update
Once this operation completes, the next step is to add the service provider. Open app/config/app.php, and add a new item to the providers array.
Cornford\Googlitics\AnalyticsServiceProvider::class,
The next step is to introduce the facade. Open app/config/app.php, and add a new item to the aliases array.
'Analytics' => Cornford\Googlitics\Facades\AnalyticsFacade::class,
Finally we need to introduce the configuration files into your application/
php artisan vendor:publish --provider="Cornford\Googlitics\AnalyticsServiceProvider" --tag=googlitics
That's it! You're all set to go.
You can now configure Googlitics in a few simple steps. Open app/config/packages/cornford/googlitics/config.php and update the options as needed.
enabled - Enable Google Analytics tracking.id A Google - Analytics tracking identifier to link Googlitics to Google Analytics.domain - The domain which is being tracked. Leave as 'auto' if you want Googlitics to automatically set the current domain. Otherwise enter your domain, e.g. google.comanonymise - Anonymise users IP addresses when tracking them via Googlitics.automatic - Enable automatic tracking to ensure users are tracked automatically by Googlitics.It's really as simple as using the Analytics class in any Controller / Model / File you see fit with:
Analytics::
This will give you access to
The trackPage method allows a page to be tracked, with optional parameters for page, title and track type.
Analytics::trackPage();
Analytics::trackPage('Homepage', 'Homepage Title');
Analytics::trackPage('Homepage', 'Homepage Title', Analytics::TYPE_PAGEVIEW);
The trackScreen method allows a screen in an application to be tracked, with a parameter for the screen name.
Analytics::trackScreen('Homepage');
The trackEvent method allows an event to be tracked, with parameters for category, and action option parameters for label and value.
Analytics::trackEvent();
Analytics::trackEvent('User', 'Sign up');
Analytics::trackEvent('User', 'Sign up', 'User - Sign up', date());
The trackTransaction method allows an ecommerce transaction to tracked, with parameters for identifier, and an optional options parameter for affiliation, revenue, shipping, tax in a key value array format.
Analytics::trackTransaction('123');
Analytics::trackTransaction('123', ['affiliation' => 'Clothing', 'revenue' => '12.99', 'shipping' => '7.99', 'tax' => '1.59']);
The trackItem method allows an ecommerce item to tracked, with parameters for identifier and name, and an optional options parameter for sku, category, price, quantity in a key value array format.
Analytics::trackItem('123', 'Socks');
Analytics::trackItem('123', 'Socks', ['sku' => 'PR123', 'category' => 'Clothing', 'price' => '7.99', 'quantity' => '1']);
The trackMetric method allows a metric to be tracked, with parameters for category, and an options parameter in a key value array format.
Analytics::trackMetric('Metric', ['metric1' => 100]);
The trackException method allows application exceptions to be tracked, with optional parameters for description and fatality.
Analytics::trackException();
Analytics::trackException('500 Server Error', true);
The trackCustom method allows custom items to be tracked with a single parameter for the custom item.
Analytics::trackCustom("ga('custom', 'parameter');");
The render method allows all tracking items to be rendered to the page, this method can be included in Views or added as controller passed parameter.
Analytics::render();
Googlitics is open-sourced software licensed under the MIT license