Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhumanj/laravel-model-stats
Model statistics dashboard for your Laravel Application
https://github.com/jhumanj/laravel-model-stats
dashboard eloquent-models hacktoberfest laravel statistics
Last synced: about 21 hours ago
JSON representation
Model statistics dashboard for your Laravel Application
- Host: GitHub
- URL: https://github.com/jhumanj/laravel-model-stats
- Owner: JhumanJ
- License: mit
- Created: 2021-06-15T08:25:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-24T08:09:42.000Z (over 1 year ago)
- Last Synced: 2024-12-15T02:03:53.005Z (8 days ago)
- Topics: dashboard, eloquent-models, hacktoberfest, laravel, statistics
- Language: Vue
- Homepage:
- Size: 2.7 MB
- Stars: 240
- Watchers: 8
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Laravel Model Stats
Model statistics dashboard for your Laravel Application[![Latest Version on Packagist](https://img.shields.io/packagist/v/jhumanj/laravel-model-stats.svg?style=flat-square)](https://packagist.org/packages/jhumanj/laravel-model-stats)
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/jhumanj/laravel-model-stats/run-tests?label=tests)](https://github.com/jhumanj/laravel-model-stats/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/jhumanj/laravel-model-stats/Check%20&%20fix%20styling?label=code%20style)](https://github.com/jhumanj/laravel-model-stats/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/jhumanj/laravel-model-stats.svg?style=flat-square)](https://packagist.org/packages/jhumanj/laravel-model-stats)---
This Laravel packages gives you a statistic dashboard for you Laravel application. Think of it as a light version of
[Grafana](https://grafana.com/), but built-in your Laravel application, and much easier to get started with.
No code knowledge is required to use Laravel Model Stats, users can do everything from the web interface. It also
optionally supports custom-code widgets, allowing you to define your widget data with
code, just like you would do with tinker.---
## Installation
You can install the package via composer:
```bash
composer require jhumanj/laravel-model-stats
```You can install the package and run the migrations with:
```bash
php artisan model-stats:install
php artisan migrate
```## Available No-Code Widgets
Different type of widgets (daily count, daily average, etc.) are available. When creating a widget,
you choose a Model, an aggregation type and the column(s) for the graph. You can then resize and move the widgets around on your dashboard.The aggregation types currently available:
- Daily Count (Number of records per day during selected period).
- Cumulated Daily Count (Cumulated Total record count during selected period).
- Period Total (Number of new records during selected period).
- Group By Count (Count per group for a given column during selected period).
- ... (more to come soon)For each widget type, date can be any column: `created_at`,`updated_at`,`custom_date`.
## Custom Code Widgets
You can also use custom code widgets, allowing you to define your widget data with
code, just like you would do with tinker.Your code must define a `$result` variable containing the data to return to the choosen chart. You can use the `$dateFrom` and `$dateTo` variable.
Example custom code for a bar chart:
```php
$result = [
'a' => 10,
'b' => 20
];
```### Custom Code Setup
🚨 Using the custom code feature against a production database is a HUGE risk 🚨Any malicious user with access to the dashboard,
or any mistake can cause harm to your database. Do not do that. Here's a safe way to use this feature:
- Create a `read-only` database user with access to your database
- Here's how to create a read-only user for a PostgreSQL database: [PostgreSQL guide](https://tableplus.com/blog/2018/04/postgresql-how-to-create-read-only-user.html)
- Here's how to create a read-only user for a MySQL database: [MySQL guide](https://ubiq.co/database-blog/create-read-only-mysql-user/)
- Add a readonly database connection to your `config/database.php` file
```php
// in database.php
'connections' => [
// ... your other connections
'readonly' => [
'driver' => 'pgsql', // Copy the settings for the driver you use, but change the user
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME_READONLY', 'forge'), // User is changed here
'password' => env('DB_PASSWORD_READONLY', ''),
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,
'schema' => 'public',
'sslmode' => 'prefer',
],
]
- In your .env set the following:
```dotenv
MODEL_STATS_CUSTOM_CODE=true
MODEL_STATS_DB_CONNECTION=readonly
DB_USERNAME_READONLY=
DB_PASSWORD_READONLY=
```
Thanks to this, the package will use the readonly connection when executing your code.
Note that this a protection against mistakes, but not against malicious users. One can override this
connection in the custom code, so there are still some risks associate with using this feature in production.
Be sure that your dashboard authorization is properly configured.### Disabling Custom Code
You may want to disable custom code widgets by setting the `MODEL_STATS_CUSTOM_CODE` env variable to `false`.## Dashboard Authorization
The ModelStats dashboard may be accessed at the `/stats` route. By default, you will only be able to access this
dashboard in the local environment. Within your `app/Providers/ModelStatsServiceProvider.php` file, there is an
authorization gate definition. This authorization gate controls access to ModelStats in non-local environments.
You are free to modify this gate as needed to restrict access to your ModelStats installation:```php
/**
* Register the ModelStats gate.
*
* This gate determines who can access ModelStats in non-local environments.
*
* @return void
*/
protected function gate()
{
Gate::define('viewModelStats', function ($user) {
return in_array($user->email, [
'[email protected]',
]);
});
}
```## Upgrading
Be sure to re-publish the front-end assets when upgrading ModelStats:
```
php artisan model-stats:publish
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits (Contributors)
- [Julien Nahum](https://github.com/JhumanJ)
## Inspiration
- [Grafana](https://grafana.com/): for the dashboard/widget aspect
- [Laravel/Telescope](https://github.com/laravel/telescope): for many things in the package structure (front-end, authorization...)
- [Spatie/Laravel-Web-Tinker](https://github.com/spatie/laravel-web-tinker): for their web tinker implementation, which is used for custom code widgets## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.