PHPackages                             eloquentize/laravel-eloquentize-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. eloquentize/laravel-eloquentize-client

ActiveLibrary[Database &amp; ORM](/categories/database)

eloquentize/laravel-eloquentize-client
======================================

laravel library for eloquentize.com service

v1.0.1(2y ago)4256[2 PRs](https://github.com/eloquentize/laravel-eloquentize-client/pulls)MITPHPPHP ^8.0CI failing

Since Mar 2Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/eloquentize/laravel-eloquentize-client)[ Packagist](https://packagist.org/packages/eloquentize/laravel-eloquentize-client)[ Docs](https://github.com/eloquentize/laravel-eloquentize-client)[ GitHub Sponsors](https://github.com/eloquentize)[ RSS](/packages/eloquentize-laravel-eloquentize-client/feed)WikiDiscussions main Synced 2d ago

READMEChangelogDependencies (15)Versions (6)Used By (0)

laravel lib for eloquentize.com service
=======================================

[](#laravel-lib-for-eloquentizecom-service)

[![Latest Version on Packagist](https://camo.githubusercontent.com/5c14a4d9f2affb8346be80944f3085a9f31322b9b163e6b5d0b6fc89bf9c3811/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f656c6f7175656e74697a652f6c61726176656c2d656c6f7175656e74697a652d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/eloquentize/laravel-eloquentize-client)[![GitHub Tests Action Status](https://camo.githubusercontent.com/324775b55b89a1584d9b2bb10c9d38fa5ca248fbc86ed2c97bad1e4e6c21a3c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f656c6f7175656e74697a652f6c61726176656c2d656c6f7175656e74697a652d636c69656e742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/eloquentize/laravel-eloquentize-client/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/165311eda7524bbfb83765088356b6df78010abca9534e88522501770f08bb34/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f656c6f7175656e74697a652f6c61726176656c2d656c6f7175656e74697a652d636c69656e742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/eloquentize/laravel-eloquentize-client/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/b743e06ff260fc2b723966651c67978e1497211e0a33c9abd8d55180227f33fa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f656c6f7175656e74697a652f6c61726176656c2d656c6f7175656e74697a652d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/eloquentize/laravel-eloquentize-client)

Eloquentize provides a full-featured monitoring toolkit for Laravel applications, designed for effortless integration. By incorporating a straightforward library, leveraging a smooth API, and offering a tailor-made dashboard, it simplifies the visualization of daily project metrics. This solution facilitates the efficient tracking and aggregation of model event metrics, streamlining project management and enriching insights, all without the need for extra coding.

[![](https://camo.githubusercontent.com/c909ea466827381ddf251d2d1c5101de298de95b6074242ab65c1317fbdb1891/68747470733a2f2f656c6f7175656e74697a652e636f6d2f696d616765732f656c6f7175656e74697a652d6c6f676f2d74722e737667)](https://eloquentize.com/docs)

Getting started
===============

[](#getting-started)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require eloquentize/laravel-eloquentize-client
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-eloquentize-client-config"
```

Usage
-----

[](#usage)

### Requirements

[](#requirements)

To get started, you'll require a Laravel project, regardless of its version; even older versions like 5.6 running on PHP 7.4 are compatible, although such setups are less common now. However, Eloquentize is designed to work seamlessly even on these versions.

Shell access is beneficial but not essential, thanks to Laravel's scheduler. Therefore, ensuring a cron job is set up on your server is necessary. If you're using Laravel Forge, simply enable the Laravel scheduler option.

Lastly, your database tables must include timestamps for Eloquentize to function correctly.

### Installation

[](#installation-1)

To set up Eloquentize, start by installing it through Composer with the following command:

```
composer require eloquentize/laravel-eloquentize-client
```

for php 7.4 please use

```
composer require eloquentize/laravel-eloquentize-client dev-php7.4
```

After installation, proceed to [eloquentize](https://eloquentize.com) to create your account and generate an API key. This key should then be added to your **`.env`** file in the following manner to complete the configuration process:

```
ELOQUENTIZE_API_TOKEN=your_api_key_here
```

**Usage** involves executing artisan commands like the one below to gather daily metrics: ( use --dry and -v for your test )

```
php artisan eloquentize:models-count --dry -v
```

You can tailor the data collection to your needs by specifying dates, event types, or selecting specific models, with aggregation commands available for deeper insights. These commands can be automated by scheduling them within **`App\Console\Kernel`**.

For those with **existing projects**, historical data analysis from the project's inception is facilitated through:

```
php artisan eloquentize:models-count-legacy

```

### Docs

[](#docs)

The full doc can be found [Eloquentize](https://eloquentize.com/docs).

Testing
-------

[](#testing)

```
pest
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [alexis desmarais](https://github.com/eloquentize)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance53

Moderate activity, may be stable

Popularity18

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~3 days

Total

2

Last Release

841d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/750cf12988fcf5b4939b55aeaf57e424a65f88ce9f51a11d5cf37b19c742cfb3?d=identicon)[yagogak](/maintainers/yagogak)

---

Top Contributors

[![eloquentize](https://avatars.githubusercontent.com/u/159796345?v=4)](https://github.com/eloquentize "eloquentize (53 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

laraveleloquentdashboardmulti-projecteloquentizelaravel-eloquentize-client

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/eloquentize-laravel-eloquentize-client/health.svg)

```
[![Health](https://phpackages.com/badges/eloquentize-laravel-eloquentize-client/health.svg)](https://phpackages.com/packages/eloquentize-laravel-eloquentize-client)
```

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M165](/packages/spatie-laravel-health)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[wnx/laravel-backup-restore

A package to restore database backups made with spatie/laravel-backup.

213421.0k2](/packages/wnx-laravel-backup-restore)[nativephp/mobile

NativePHP for Mobile

1.1k75.1k91](/packages/nativephp-mobile)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5021.9k](/packages/simplestats-io-laravel-client)[lacodix/laravel-model-filter

A Laravel package to filter, search and sort models with ease while fetching from database.

17558.6k](/packages/lacodix-laravel-model-filter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
