DEV Community

Rohit Urane
Rohit Urane

Posted on

Faster your application with Laravel Debug Bar Package

Image description

Hi guys,

In this article, We are studying laravel debugbar packages. You use the Laravel Debug bar package to debug and profile the toolbar in your application. It contains different features like performs, queries, and exceptions. The Laravel Debug bar is a crucial debugging and profiling toolbar for laravel applications. Use the Laravel Debug bar to simplify the debugging process and enhance your productivity during development. It slows the execution of the application because it has to gather data. It helps to simplify the debugging process, boosting your productivity, and you can deliver high-quality laravel applications.

Key Features:

Query Inspection: quickly study and analyze the execution queries and monitor your model performance.
Request Profiling: you can track and display detailed information on requests, memory usage, execution time, and timeline of events.
Logging and Exceptions: it provides a display panel and investigates log messages and exceptions.
Timing and benchmarking: it shows the execution time of code, helping you identify areas of your applications that might need optimization.

Step by Step to step up laravel debug bar

Install the Laravel Debugbar Package

Run the below command to install the laravel debug bar.

composer require barryvdh/laravel-debugbar --dev

Register the debug bar

You need to register and publish the debug bar in your application. Execute the below command:

php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"

Read More

Top comments (0)