Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2022-07-04 (2 months ago) | | Not yet rated by the users | | Total: 28 This week: 1 | | All time: 10,641 This week: 206 |
|
Description | | Author |
This package can activate the Laravel DebugBar dynamically.
It provides a service for Laravel applications that can make the debug bar show even if it is disabled in the application configuration.
Applications can use this service conditionally in certain circumstances, so this package can make the Laravel Debug appear on the pages when the developers need it. Innovation Award
July 2022
Number 5 |
PHP DebugBar is a package that is useful for debugging PHP applications. At the bottom of the current page, it can show several types of debugging information about the execution of the PHP script handling the current HTTP requests.
Laravel DebugBar is a package that turns the PHP DebugBar package into a service that Laravel applications can use.
When developers debug an application, they may not need to show debugging information in all circumstances.
This package only provides the means to enable the debug bar in the Laravel application only in certain circumstances that are useful for the developer who is debugging a Laravel application.
Manuel Lemos |
| |
|
|
Innovation award
Nominee: 3x |
|
Details
Laravel Debugbar Extension
This package allows you to enable the Debugbar on deman, despite being disabled by configuration.
DEBUGBAR_ENABLED=false
config/app.php
'providers' => [
//
// Barryvdh\Debugbar\ServiceProvider::class,
JaguarSoft\LaravelDebugbar\Provider\DebugbarServiceProvider::class,
],
'aliases' => [
//
'Debugbar' => Barryvdh\Debugbar\Facade::class,
],
Middleware
public function handle($request, Closure $next){
if(/your validation/){
\Debugbar::enable();
}
return $next($request);
}
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.