gooby / laravel-debugbar-dd
Ever wanted to dd() and see the debugbar? This package does just that by calling bd() - Bar Dump.
Installs: 807
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:helper
pkg:composer/gooby/laravel-debugbar-dd
Requires
- php: ^8.2
- barryvdh/laravel-debugbar: ^3
- laravel/framework: ^9|^10|^11
- symfony/var-dumper: ^6|^7
This package is auto-updated.
Last update: 2025-12-13 08:59:23 UTC
README
Ever wanted to dd() and see the debugbar? This package does just that by calling bd() - Bar Dump.
Installation
composer require gooby/laravel-debugbar-dd --dev
Usage
bd($var1, $var2, ...)- will dump the variables and show the debugbarbd()- will show the debugbar
Example
Route::get('/', function () { $user = App\User::first(); bd($user); });
Credits
- laravel-debugbar by barryvdh
- symfony/var-dumper by symfony
- laravel/framework by taylorotwell
