All bugs in Laravel are reported on the Github repository.
Assuming that's what you meant as you weren't very clear.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello, Is there any Laravel 5 package available to allow user report a bug in the system? It would be awesome if package would allow to attach current page screenshot.
Thanks
https://packagist.org/packages/fireguard/report maybe?
However what it looks like you are looking for is a customized Bug Report system specifically tailored to your application, which you would be better off creating on your own.
You could quickly whip up a sample project using just one table to contain the bug reports which would contain the information you want, maybe even a pivot table to contain the images related to the incident
Then create the interface for the bug report interface, this could be as little as a button in the corner that would allow them to take a screenshot and post a small description of the bug. Or it could be as big as Apple's Bugreport System which would require a separate page, which would make it harder to let the user upload an image of the error.
And then you would need an interface to read the bug reports, but that is up to you.
Please or to participate in this conversation.