This commit is contained in:
Sampanna Rimal
2024-09-04 12:22:04 +05:45
parent 53c0140f58
commit 82fab174dc
203 changed files with 4255 additions and 1343 deletions

View File

@ -843,7 +843,7 @@ class LaravelDebugbar extends DebugBar
*/
protected function isDebugbarRequest()
{
return $this->app['request']->segment(1) == $this->app['config']->get('debugbar.route_prefix');
return $this->app['request']->is($this->app['config']->get('debugbar.route_prefix') . '*');
}
/**

View File

@ -554,6 +554,9 @@ ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item {
border: none;
font-family: inherit;
overflow: visible;
}
ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-sql {
line-height: 20px;
}