'Laravel - Better Error Tracking [closed]

After we have develop the web application using Laravel, we need tool for better tracking and monitoring for any possible bug & error occur. Is there any nice free tool / plugin that works well with Laravel for tracking & monitoring errors?

Thank you.



Solution 1:[1]

If you are after a package to monitor your package while you are developing - you can try Clockwork: https://github.com/itsgoingd/clockwork

If you need a solution for monitoring your application in production - you can checkout Eyewitness.io. It will monitor your Laravel application, and alert you if there are any problems with the website, cron schedules, queues, logs etc.

disclaimer: I made the solution

Solution 2:[2]

Any good log monitoring tool should accomplish the goal. Laravel will put all errors into app/storage/logs/laravel.log. The log monitoring tool would watch that log for errors.

Solution 3:[3]

I am the author of laravel lapse.

Unlike Logviewer, lapse only store the error from Exception / Throwable.

Lapse provides a beautiful dashboard to track your errors in production without having to look up log file. Moreover it can notify you via Slack channel and Email alert. And moreover it can notify you via all of the channels from laravel notification channels.

Lapse behind the scence depend on https://laravel.com/docs/5.6/notifications. It means theoretically Lapses can notify your error via over 30 ways including Slack, Email, Nexmo, Trello, Telegram, Facebook, Discord, Pusher, Twillo, Twitter.

The search and filter is very fast because lapse store the error stack in the database instead of working on the log file.

Solution 4:[4]

Depending on which version of laravel you are using, there is this package: http://packalyst.com/packages/package/barryvdh/laravel-debugbar

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Laurence
Solution 2 Nick
Solution 3 Pyae Sone Nyein
Solution 4 clonerworks