makeabledk/laravel-google-analytics

Fetches data from users analytics

dev-master 2018-01-08 13:21 UTC

This package is auto-updated.

Last update: 2024-04-04 21:41:56 UTC


README

Fetches Analytics channel data based on oAuth

Installation

composer require makeabledk/laravel-google-analytics

Add the following config to your config/services.php

return [

    // ...

    'google' => [
        'oauth_client_id' => env('GOOGLE_OAUTH_CLIENT_ID'), // provide your client id
        'oauth_client_secret' => env('GOOGLE_OAUTH_CLIENT_SECRET'), // provide your client secreT
    ],