amendozaaguiar/filament-route-statistics
Filament route statictics viewer
26,054
32
| Install | |
|---|---|
composer require amendozaaguiar/filament-route-statistics |
|
| Latest Version: | 4.2 |
| PHP: | ^8.0 |
| License: | MIT |
| Last Updated: | Jun 17, 2025 |
| Links: | GitHub · Packagist |
Maintainer: amendozaaguiar
Filament Route Statistics
A Filament plugin for Laravel Route Statistics package.
This package provides a Filament page for Laravel Route Statistics.
Requirements
- PHP 8.1 | 8.2
- Filament 3
Dependencies
Installation
You can install the plugin via Composer:
composer require amendozaaguiar/filament-route-statistics
You can publish the translations files with:
php artisan vendor:publish --tag="filament-route-statistics-translations"
Using the Page
Add this plugin to a panel on plugins() method.
E.g. in app/Providers/Filament/AdminPanelProvider.php:
use Amendozaaguiar\FilamentRouteStatistics\FilamentRouteStatisticsPlugin;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->plugins([
FilamentRouteStatisticsPlugin::make(),
//...
]);
}
That's it! Now you can see the log page on left sidebar.
Related Packages
nmehroj/route-usage-tracker
Laravel Route Usage Tracker Package with Vue.js 3 Dashboard and Inertia.js Suppo...
7
0
shrimpwagon/laravel-route-controller
Adds back the Route:controller functionality that was removed in Laravel 5.3 and...
196
10
maartenstaa/laravel-41-route-caching
This package allows you to cache your routes definitions, thereby speeding up ea...
384,139
25