| Package Data | |
|---|---|
| Maintainer Username: | dlcrush |
| Maintainer Contact: | dlcrush@mail.roanoke.edu (David Crush) |
| Package Create Date: | 2015-02-05 |
| Package Last Update: | 2015-02-28 |
| Home Page: | |
| Language: | PHP |
| License: | Unknown |
| Last Refreshed: | 2025-10-25 03:00:59 |
| Package Statistics | |
|---|---|
| Total Downloads: | 181 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 2 |
This is a laravel package that makes your variable dumps look nicer. The output is comparable to ColdFusion's cfdump.
Based off of dBug class https://github.com/ospinto/dbug
This will walk you through how to set up the package.
"dlcrush/laravel-dbug": "~1.1.0"
Composer update
Add the Service Provider to the providers array in app/config/app.php
'dlcrush\DBug\DBugServiceProvider',
app/config/app.php
'DBug' => 'dlcrush\DBug\Facades\DBug',
To dump out a variable, do the following:
DBug::DBug($var);
To dump and then die, do the following:
DBug::DBug($var, true);