2017 © Pedro Peláez
 

library laravel-google-analytics-tracking

Inject your Google Analytics tracking ID into a Laravel project

image

petercoles/laravel-google-analytics-tracking

Inject your Google Analytics tracking ID into a Laravel project

  • Thursday, April 27, 2017
  • by petercoles
  • Repository
  • 1 Watchers
  • 0 Stars
  • 138 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 8 % Grown

The README.md

Google Analytics Tracking for Laravel

Introduction

Other Google Analytics packages for Laravel are designed to consume analytics data via the Google API and allow you to process it on your Laravel site. Not this one., (*1)

Instead this does the ridiculously straightforward task of extracting your Google Analytics tracking ID from your Laravel .env file and injecting it into the a Blade view intended for inclusion in your base layout., (*2)

The only wrinkle is that if you don't set the tracking ID in your .env file the Google script won't be included in your site. This is deliberate as it can be marginally useful for development and staging environments., (*3)

Installation

Add the package to your project, (*4)

composer require petercoles/laravel-google-analytics-tracking

Add the service provider to the providers list in your config/app.php file, (*5)

'providers' => [
    // ...
    PeterColes\LaravelGoogleAnalyticsTracking\GoogleAnalyticsTrackingServiceProvider::class,
    // ...
],

Include the Blade view in your base layout, (*6)

@include('google-analytics::script')

Traditionally this was placed near the closing body tag. However as the script is now loaded asynchronously, it can be added anywhere where a script tag is legitimate., (*7)

On your production server, set your tracking code in the .env file, (*8)

GOOGLE_ANALYTICS_TRACKING_ID=UA-XXXXXXXX-X

License

This package is licensed under the MIT license., (*9)

Final Note

If you've got this far, you're probably thinking "Couldn't I just cut and paste the Google script into my base layout?", to which the answer is "Absolutely!". I built this package only because I was doing this so often that it had begun to feel like a code smell and I wanted to DRY up this piece of my applications. I also wanted the additional benefit of separating the tracking ID from the script to reduce the risk of accidentally reusing another site's tracking ID., (*10)

The Versions

27/04 2017

dev-master

9999999-dev https://github.com/petercoles/laravel-google-analytics-tracking

Inject your Google Analytics tracking ID into a Laravel project

  Sources   Download

MIT

The Requires

 

laravel google analytics tracking id

27/04 2017

1.0.1

1.0.1.0 https://github.com/petercoles/laravel-google-analytics-tracking

Inject your Google Analytics tracking ID into a Laravel project

  Sources   Download

MIT

The Requires

 

laravel google analytics tracking id

19/04 2017

1.0.0

1.0.0.0 https://github.com/petercoles/laravel-google-analytics-tracking

Inject your Google Analytics tracking ID into a Laravel project

  Sources   Download

MIT

The Requires

 

laravel google analytics tracking id