Open Issues Need Help
View All on GitHubAI Summary: Create a Laravel Artisan command to purge entries from the `route_logs` table that are older than one year. This involves adding a new command to the package, handling database interaction (likely using Eloquent or Query Builder), and potentially adding configuration options to control the purge behavior.
A Laravel package to track and log route usage in your application. Useful for debugging, and monitoring which routes are accessed and how often.
AI Summary: Implement a middleware alias 'track.route' in the Laravel Route Tracker package, as mentioned in the README and issue. This involves modifying the package's code to register the alias and ensure it functions identically to the existing `\Amol\LaravelRouteTracker\Middleware\TrackRoute` middleware.
A Laravel package to track and log route usage in your application. Useful for debugging, and monitoring which routes are accessed and how often.