Route Statistics
This package provides a page for Laravel Route Statistics.
Author:
Anderson Mendoza A
Documentation
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.
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese