Package Data | |
---|---|
Maintainer Username: | mattstauffer |
Maintainer Contact: | matt@tighten.co (Matt Stauffer) |
Package Create Date: | 2018-08-24 |
Package Last Update: | 2024-06-05 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:01:55 |
Package Statistics | |
---|---|
Total Downloads: | 117,427 |
Monthly Downloads: | 817 |
Daily Downloads: | 19 |
Total Stars: | 165 |
Total Watchers: | 13 |
Total Forks: | 30 |
Total Open Issues: | 0 |
JUST GETTING STARTED.
Plans:
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=
If you discover any security related issues, please email matt@tighten.co instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.