Looking to hire Laravel developers? Try LaraJobs

laravel-google-analytics maintained by cldt

Description
A Laravel package to retrieve data from Google Analytics 4 using the GA4 Query Explorer
Author
Last update
2026/04/01 10:11 (dev-main)
License
Downloads
1 217

Comments
comments powered by Disqus

Laravel Google Analytics

Latest Version GitHub Workflow Status (branch) StyleCI Software License Total Downloads

A Laravel package to retrieve data from Google Analytics 4 using the GA4 Query Explorer

TL;DR

Using this package you can easily retrieve data from Google Analytics 4.

Below are some examples.


use AkkiIo\LaravelGoogleAnalytics\Facades\LaravelGoogleAnalytics;
use AkkiIo\LaravelGoogleAnalytics\Period;
use Google\Analytics\Data\V1beta\Filter\StringFilter\MatchType;
use Google\Analytics\Data\V1beta\MetricAggregation;
use Google\Analytics\Data\V1beta\Filter\NumericFilter\Operation;

// get the top 20 most viewed pages for last 30 days
LaravelGoogleAnalytics::getMostViewsByPage(Period::days(30), $count = 20);

// get the top 20 dates with most users for last 12 months
LaravelGoogleAnalytics::getMostUsersByDate(Period::months(12), $count = 20);

// build a query using the `get()` method
LaravelGoogleAnalytics::dateRanges(Period::days(30), Period::days(60))
    ->metrics('active1DayUsers', 'active7DayUsers')
    ->dimensions('browser', 'language')
    ->metricAggregations(MetricAggregation::TOTAL, MetricAggregation::MINIMUM)
    ->whereDimension('browser', MatchType::CONTAINS, 'firefox')
    ->whereMetric('active7DayUsers', Operation::GREATER_THAN, 50)
    ->orderByDimensionDesc('language')
    ->get();

Please refer to the wiki for more details.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email hello@akki.io instead of using the issue tracker.

Credits

License

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