Laravel Request Logger is a Composer package compatible with Laravel, allowing you to log all incoming HTTP requests to the database.
The project started quite simply during the development of my previous website. I wanted to implement a statistics system, but for that, I needed to be able to record the number of visits to each page. That's when the idea came to me to log all incoming HTTP requests. This allowed me to detect various bots and crawlers that were looking for vulnerabilities in my site, which is quite handy for creating honeypots.
The idea of creating a Composer package came to me when I started working on other Laravel projects. Rather than copying the files for each project, I decided to learn how to create a package using the Orchestra library.