Getting started is simple
-
Grab the Sentry Laravel SDK:
composer require sentry/sentry-laravel
-
Add the Sentry service provider and facade in
config/app.php
:'providers' => array( Sentry\Laravel\ServiceProvider::class, ) 'aliases' => array( 'Sentry' => Sentry\Laravel\Facade::class, )
-
Add Sentry reporting to
App/Exceptions/Handler.php
:public function report(Exception $exception) { if (app()->bound('sentry') && $this->shouldReport($exception)) { app('sentry')->captureException($exception); } parent::report($exception); }
-
Create the Sentry configuration file (
config/sentry.php
):$ php artisan vendor:publish --provider="Sentry\Laravel\ServiceProvider"
That’s it! Check out the Sentry for Laravel documentation for more information.
Laravel Performance Monitoring

Quickly identify performance issues and view full end-to-end distributed trace to see the exact, poor-performing API call and surface any related errors.
Laravel error monitoring with complete stack traces
See local variables in the stack for prod errors, just like in your dev environment.
Explore the full source code context with frame to function data.
Filter and group Laravel exceptions intuitively to eliminate noise.
Fill in the blanks about Laravel errors
Expose the important events that led to each Laravel exception: network requests, SQL queries, debug logs, past errors.
See the full picture of any Laravel exception
Aggregate errors by factors like request details, user ID, and app version to see what’s new, a priority, or a trend.
Assign custom key-value tags to reproduce the error environment specific to your application, business, and users.
- “How actionable is the error? Can I snooze the alert?”
- “How many unanswered friend requests were there?”
- “In which app release did the Laravel bug occur?”
- “Was it a code error or a usage exception?”
- “Is Mercury in retrograde?”
Sentry also supports your frontend
Resolve Laravel errors with max efficiency, not max effort
Improve workflow with a full view of releases so you can mark errors as resolved and prioritize live issues.
Learn in which version a bug first appeared, merge duplicates, and know if things regress in a future release.
Add commit data to automatically suggest an owner of each Laravel error and instantly send deploy emails.
Is your data secure?
You better believe it.
Just look at all the high-quality security features all accounts get, regardless of plan.
- Two-Factor Auth
- Single Sign On support
- Organization audit log
- SOC-2 Certified
- Privacy Shield certified
- PII data scrubbing
- SSL encryption
- COPPA Compliant
Sentry tracks errors in all major languages and frameworks
See all platformsIt also integrates with your favorite apps and services





