petercoles/laravel-google-analytics-tracking
最新稳定版本:1.0.1
Composer 安装命令:
composer require petercoles/laravel-google-analytics-tracking
包简介
Inject your Google Analytics tracking ID into a Laravel project
README 文档
README
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.
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.
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.
Installation
Add the package to your project
composer require petercoles/laravel-google-analytics-tracking
Add the service provider to the providers list in your config/app.php file
'providers' => [
// ...
PeterColes\LaravelGoogleAnalyticsTracking\GoogleAnalyticsTrackingServiceProvider::class,
// ...
],
Include the Blade view in your base layout
@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.
On your production server, set your tracking code in the .env file
GOOGLE_ANALYTICS_TRACKING_ID=UA-XXXXXXXX-X
License
This package is licensed under the MIT license.
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.
统计信息
- 总下载量: 523
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-04-19