wilburpowery / nova-google-analytics

Google Analytics integration with Laravel Nova

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Google Analytics integration with Laravel Nova

License:MIT License


Languages

Language:PHP 72.8%Language:Vue 18.0%Language:HTML 6.1%Language:JavaScript 3.0%Language:CSS 0.1%