tighten / nova-google-analytics by mattstauffer

Google Analytics integration with Nova
112,595
161
13
Package Data
Maintainer Username: mattstauffer
Maintainer Contact: matt@tighten.co (Matt Stauffer)
Package Create Date: 2018-08-24
Package Last Update: 2024-03-20
Language: PHP
License: MIT
Last Refreshed: 2024-04-17 15:02:30
Package Statistics
Total Downloads: 112,595
Monthly Downloads: 911
Daily Downloads: 41
Total Stars: 161
Total Watchers: 13
Total Forks: 28
Total Open Issues: 0

Google Analytics integration with Nova

Latest Version on Packagist Total Downloads

image

JUST GETTING STARTED.

Plans:

  • Analytics tool
  • Individual cards for each of the useful analytics data points
  • Resource tools (e.g. analytics on each page)
  • Maybe actions for events?
  • Other great stuff I hope :)

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require tightenco/nova-google-analytics

Next up, you must register the card with Nova. This is typically done in the cards method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvider.php

// ...

public function cards()
{
    return [
        // ...
        new \Tightenco\NovaGoogleAnalytics\PageViewsMetric,
        new \Tightenco\NovaGoogleAnalytics\VisitorsMetric,
        new \Tightenco\NovaGoogleAnalytics\MostVisitedPagesCard,
    ];
}

For now, follow the directions on Spatie's Laravel Google Analytics package for getting your credentials, then put them here:

yourapp/storage/app/analytics/service-account-credentials.json

Also add this to the .env for your Nova app:

ANALYTICS_VIEW_ID=

Security

If you discover any security related issues, please email matt@tighten.co instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.