@jasen
To get detailed performance tracking in Laravel, you can use a combination of tools and techniques. Here are some steps you can follow:
1
|
composer require barryvdh/laravel-debugbar |
Once installed, you can enable the Debugbar by adding it to your middleware in the app/Http/Kernel.php
file:
1 2 3 4 |
protected $middleware = [ // ... BarryvdhDebugbarMiddlewareDebugbar::class, ]; |
1
|
composer require laravel/telescope --dev |
After installing, you can publish the configuration file and run the migrations to create the necessary database tables:
1 2 |
php artisan telescope:install php artisan migrate |
You can then access Telescope in your browser to view detailed information about your application's performance.
By following these steps and using the recommended tools, you can get detailed performance tracking in your Laravel application and identify any areas for improvement.