The missing analytics tool for your Laravel application.

Server-side, GDPR compliant and 100% accurate analytics tool, that goes beyond simple counts of views and visits. Discover in-depth metrics like Registrations, Conversion Rate, campaign ROI and much more in just a few minutos!
Live demoWhy SimpleStats?
Web analytics dashboard for Laravel apps
SimpleStats - The missing statistics tool for Laravel applications | Product Hunt
SimpleStats - The missing analytics tool for Laravel applications | Laravel News

Powerful analytics in no time

Install the client

Install SimpleStats

composer require simplestats-io/laravel-client
In your Laravel project, you just need to install the SimpleStats client. Congrats, the tool is now already tracking your visitors!
Track your users

Example of the TrackablePerson contract

class User extends Authenticatable implements TrackablePerson
{
    public function getTrackingTime(): CarbonInterface
    {
        return $this->created_at;
    }
}
To make the client track your user registrations, you only have to add the TrackablePerson interface and implement the contract.
Track your sales

Example of the TrackablePayment contract

class Transaction extends Model implements TrackablePayment
{
    public function getTrackingPerson(): TrackablePerson
    {
        return User::find($this->user_id);
    }

    public function getTrackingTime(): CarbonInterface
    {
        return $this->created_at;
    }

    public function getTrackingGross(): float
    {
        return $this->total;
    }

    public function getTrackingNet(): float
    {
        return $this->total - $this->tax;
    }

    public function getTrackingCurrency(): string
    {
        return $this->currency;
    }
}
To enable the client to track your app's payments, you need to add the TrackablePayment interface to your payment/transaction model and implement the contract.
Make sure to check out the documentación for more details.

What makes us únicos

Diferente

Traditional client-side analytic tools are only about 70% accurate because of ad blockers and they often only show you data like visits and views. That's where server-side analytics like SimpleStats shines; it gives you superpowers without the integration hustle!

Simple

All you need to do to get SimpleStats up and running is: Install a composer package, adjust the config to your needs, create an account, and add the token to your env file. Congrats, you're ready to analyze your campaigns and users!

Reporting

The tool provides you with a powerful reporting system that allows you to create custom reports, filter them by location, device, and UTM parameters. The frequency of the reports can be saved and scheduled individually, so you never miss important updates!

API

Even though the composer client package is dedicated to Laravel, the API basically works with every client! So if you'd like to use the tool, even if you're not using Laravel, just trigger the API requests manually and you'll be able to use the tool for any custom project.

UTMs and Referrers

Since the tool by default collects UTMs and Referrers for you and connects it with your users and their payments, it lets you seamlessly check the ROI of each of your campaigns and allows you to see where you can buy the cheapest users and from which channel users perform best!

KPIs

Here are a few of the KPIs that the tool provides out of the box: Unique Visitors, Registrations, Conversion Rate, Daily Active Users, New Active Paying Users, Average Revenue per User, Revenue and much more! Everything filterable by date, locations, devices and UTMs.

Privacidad

We are fully committed to GDPR compliance! No cookies are required or stored, ensuring your data remains confidential. You can rely on SimpleStats to respect your privacy and guarantee that your data will never be shared.

Colaborar

Collaborate by creating a team, inviting your co-workers to your projects, and assigning permissions to them. Each team is separated by tenancy, ensuring highly secure, robust and solid data integration!

Gratis

There will always be a free plan! If your business grows, you can support us with by subscribing. We would love to help you analyzing your campaigns. No need to enter credit card information at the registration.

Testimonials of our fans

SimpleStats has been a game-changer for us. Its backend analytics ensure pinpoint accuracy, giving us reliable data that isn't affected by ad blockers. We now have a crystal-clear view of our payment and registration conversions. Highly recommended for anyone needing precise stats!

Integrating SimpleStats into our Laravel projects was incredibly easy. The seamless setup saved us hours, and now we can effortlessly monitor our campaigns and conversions. This tool has streamlined our workflow and provided invaluable insights and metrics.

FYI, early days but you are counting at least 2x the traffic of what we’re seeing with Fathom Analytics

I just saw SimpleStats on reddit, it looks super awesome!

SimpleStats is a damn good product. Lots of features and metrics most Laravel apps needs.

Thanks to SimpleStats, we can quickly see which of our campaigns are truly profitable. The detailed conversion tracking for payments and registrations has helped us optimize our marketing strategies without any extra effort. It's an essential tool for any data-driven business.

Ingmar Feldhoff
Ingmar Feldhoff
CEO of Trollgames

SimpleStats is an amazing product! The onboarding was one of the smoothest experiences I've had - super easy and straightforward. Everything just works, from setup to job dispatching with Redis. A great overall experience!

Subscribe at your necesidad

Gratis
$0 / mes

Simple analytics, no card required.

1 Project
5K Monthly Events
Multi Currency Support
Data Import
Get started
Starter
$9 / mes*

Great for smaller projects.

10 Projects
100K Monthly Events
Multi Currency Support
Data Import
Get started
Plus
$19 / mes*

For ambitious, growing projects.

Unlimited Projects
200K Monthly Events
Multi Currency Support
Data Import
Get started
Business
$49 / mes*

High-volume tracking at scale.

Unlimited Projects
500K Monthly Events
Multi Currency Support
Data Import
Get started
Enterprise
$199 / mes*

Analytics without any limits.

Unlimited Projects
10M Monthly Events
Multi Currency Support
Data Import
Get started
* All prices are net prices. Local taxes and VAT may be added in the checkout. You can remove VAT by adding your VAT id.
If these plans do not fit your needs, feel free to contact sales.
Wonder what an event is?

Take full control with Self-Hosted

Single domain
$249

For one domain or subdomain. Powerful analytics with package and API. One year of updates, no subscription.

One domain or subdomain
Package and API included
Robust analytics features
Great for running SimpleStats standalone
1 year of free updates, no subscription
Unlimited domains
$999

No domain limits. Integrate into products. Full analytics suite. One year of updates, no subscription.

No domain restrictions
Package and API included
Robust analytics features
May be integrated into products
1 year of free updates, no subscription

Comenzar SimpleStats Self-Hosted today and take full control!

Frequently asked frecuentes


Most often, this is a queue-related issue. Ensure you have cleared your config cache and restarted your queue after adding the API token to your .env file.


An event is any tracked activity - such as a unique visitor, registration, login, or payment. Each of these counts as one event towards your monthly usage.


We track unique visitors in a GDPR-compliant way by generating a unique visitor hash each time a new visitor accesses your site. This hash is derived from a combination of the visitor's User-Agent, IP address, and a daily salt. This method enables unique visitor tracking without storing personally identifiable information such as cookies, ensuring privacy and data protection.


Yes! You can track custom events to measure any activity that matters to your application. Check out our documentation to get started.

If you need more help, check out our Troubleshooting page!