Support the ongoing development of Laravel.io →
Requests Database Packages
Last updated 1 year ago.
0

this looks amazing... I can't wait to try it out (at work I can't SSH to my server... sadly IT wins... this time) ;)

Last updated 1 year ago.
0

Seconded, definitely need to check this one out

Last updated 1 year ago.
0

barryvdh, thanks for this very needed package. I just have one question which I wasn't able to find the answer to by reading the documentation of maxime's debugbar nor on the old forum thread. How / where do I configure the bar? specifically, I am trying to enable the (optional) displaying of shared data for views, and in general, to see the dump of all the data I am passing to the views and the request/response data. I am trying to debug some old input / session data loss issue and having that data available would help a lot.

Or maybe I am doing it wrong and maybe I need to kind of dump it through message (maybe in some place where it'll be enabled for all requests)? Please advise ... :-)

Last updated 1 year ago.
0

@mbariola Once you have added debugbar to your apps providers array you can use the following command php artisan debugbar:publish on the command line to copy the debugbars default config file to app/config/packages/barryvdh/laravel-debugbar/config.php from where you can enable/disable certain parts of the debug bar.

Last updated 1 year ago.
0

@carbontwelve , I have both the publish command on the composer setup and I ran it manually. I do have a packages dir, but only a .gitkeep file in it. Permissions seem ok and indeed the bar works, but the app/config/packages dir does not contain barrydvh/laravel-debugbar/config.php

carbontwelve said:

@mbariola Once you have added debugbar to your apps providers array you can use the following command php artisan debugbar:publish on the command line to copy the debugbars default config file to app/config/packages/barryvdh/laravel-debugbar/config.php from where you can enable/disable certain parts of the debug bar.

Last updated 1 year ago.
0

Is it possible to collect and show query result rows?

Also, PhpInfoCollector doesn't seem to work for me?

Last updated 1 year ago.
0

Debugbar:publish is for assets, use 'php artisan config:publish barryvdh/laravel-debugbar' for the config. Then the config file will be published. The php info collector doesn't do anything (yet)

And yes, query results are collected.

Last updated 1 year ago.
0

Hello @barryvdh ,

perfect, I got my shiny config file to play with. Thanks!

Last updated 1 year ago.
0

Anyone know how can I add a collector that listens to ONLY eloquent model events?

Last updated 1 year ago.
0

You've done great on this. But I was wondering if you can tell me what's included in the "booting" sequence of the Timeline result? I find Laravel very slow to "boot". I have response times of around 200-250ms in my dev environment (I have a fast computer), and that's just way too slow I feel. The applicaiton part is only 40ms.

I've found that artisan optimize cuts the boot time by about 20%. That's great, but it's still around 140-150ms for booting of Laravel and its components. I also don't run the optimize command in dev of course.

If this not something you can answer, I wonder if not Taylor should release a "bare bone" package like you can with Twitter Bootstrap 3. Just pick the components you want...

Last updated 1 year ago.
0

@Stolz, you can just do something like this:

$dispatcher = $this->app['events'];
Event::listen('eloquent.*', function(){
	$event = Event::firing();
	Debugbar::info("Received event: ". $event);
});

@CedNet: I think booting is everything until the router kicks in, you could try disabling some service providers to make it faster.

Last updated 1 year ago.
0

Thanks, did comment out a few unused ones but really that's only like 2-3 out of the 20-ish total service providers. Things did improve though by 10-20ms on average.

Laravel should be able to do a lot, but I'm starting to feel the Laravel core is getting a bit heavy.

Last updated 1 year ago.
0

I added some Twig extensions, for the ones using that:

Twig Integration

Laravel Debugbar comes with two Twig Extensions. These are tested with rcrowe/TwigBridge 0.6.x

Add the following extensions to you TwigBridge config/extensions.php (or register the extensions manually)

'Barryvdh\Debugbar\Twig\Extension\Debug',
'Barryvdh\Debugbar\Twig\Extension\Stopwatch',

The Debug extension will replace the dump function to output variables to the Messages, instead of showing it directly in the template. It dumps the arguments, or when empty; all context variables.

{{ dump() }}
{{ dump(user, categories) }}

The Stopwatch extension adds a stopwatch tag similar to the one in Symfony/Silex Twigbridge.

{% stopwatch "foo" %}
    ... some things that gets timed
{% endstopwatch %}
Last updated 1 year ago.
0

I've pushed a new update which no longer requires the assets to be published, give it a try! :)

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

barryvdh barryvdh Joined 11 Dec 2013

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.