adgyn / simple-analytics-laravel
Focused on creating analyses for decision-making.
Installs: 41
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/adgyn/simple-analytics-laravel
Requires
- php: ^8.2
- illuminate/support: ^11.0
- ixudra/curl: ^6.22
- nesbot/carbon: ^3.3
This package is auto-updated.
Last update: 2025-10-09 15:52:19 UTC
README
- PHP 8.2 or later
- Laravel 11.x or later
Installation
Pull this package in through Composer.
composer require adgyn/simple-analytics-laravel
Publish the package settings.
php artisan vendor:publish --tag=simple-analytics
Run laravel migrations.
php artisan migrate
Usage
After installing the package, it will make 2 routes available in your project:
Create a new event from a front-end request.
POST /analytics/event
Body Parameters:
| Field | Description | Required | Default |
|---|---|---|---|
| event_name | Name of event | Yes | - |
| event_label | Label of event | Yes | - |
| route | Frontend route to analytics | Yes | - |
| reference | Reference to filter Ex: parameter of route | No | NULL |
Get analytics generated of events created.
GET /analytics/data
Query Parameters:
| Field | Description | Required | Format | Default |
|---|---|---|---|---|
| start_at | Start date to filter | No | Y-m-d H:i:s | - |
| finish_at | Finish date to filter | No | Y-m-d H:i:s | - |
| detailed | Returns detailed data by route, country, etc. | No | Boolean | false |
| routes | List of routes to filter by | No | Array | [] |
| reference | List of references to filter by | No | Array | [] |
| countries | List of countries codes to filter by. EX: BR | No | Array | [] |
Example response (Detailed: false):
{
"unique_visitors": 4,
"visitors": 8,
"countries": 1,
"events": 3,
"routes": 3
}
Example response (Detailed: true):
{
"routes": [
{
"route": "\/dashboard",
"unique_visitors": 1,
"visitors": 1
},
{
"route": "\/dashboard\/payment",
"unique_visitors": 3,
"visitors": 5
},
{
"route": "\/dashboard\/test",
"unique_visitors": 1,
"visitors": 2
}
],
"countries": [
{
"country": "Not found",
"unique_visitors": 4,
"visitors": 8
}
],
"events": [
{
"event": "On Click",
"unique_visitors": 1,
"visitors": 1
},
{
"event": "Event Test",
"unique_visitors": 1,
"visitors": 1
},
{
"event": "Click on payment button",
"unique_visitors": 3,
"visitors": 6
}
]
}