| Package Data | |
|---|---|
| Maintainer Username: | repat |
| Maintainer Contact: | dlcrush@mail.roanoke.edu (David Crush) |
| Package Create Date: | 2015-12-14 |
| Package Last Update: | 2015-12-14 |
| Home Page: | |
| Language: | PHP |
| License: | GPL-2.0 |
| Last Refreshed: | 2025-11-06 15:00:27 |
| Package Statistics | |
|---|---|
| Total Downloads: | 5,025 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 4 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
laravel-5-dbug is a Laravel package that makes your variable dumps look nicer with the ospintos dBug class. The output is comparable to ColdFusion's cfdump. This repository is a fork from dlcrush/laravel-dbug with an update for Laravel 5 and a few minor fixes.
composer update
"repat/laravel-5-dbug": "~1.*"
OR
composer require repat/laravel-5-dbug
app/config/app.php
dlcrush\DBug\DBugServiceProvider::class,
app/config/app.php
'DBug' => dlcrush\DBug\Facades\DBug::class,
To dump out a variable, do the following:
DBug::DBug($var);
To dump and then die, do the following:
DBug::DBug($var, true);