mic / better-dd
A package for Laravel 4 to dump the given variable. It much better than dd function in Laravel Helpers. Clean and Readable
Installs: 158
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/mic/better-dd
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-10-07 07:59:36 UTC
README
A package for Laravel 4 to dump the given variable. It much better than dd function in Laravel Helpers. Clean and Readable
Example Usage:
// de() function doesn't end execution of the script. You have to use exit or die function after de().
de($value);
OR
ddd($value);
Example Result:
Installation
Add BetterDD as a requirement to composer.json:
{
...
"require": {
...
"mic/better-dd": "dev-master"
...
},
}
Update composer:
php composer.phar update
Add the provider to your app/config/app.php:
'providers' => array(
...
'Mic\BetterDD\BetterDDServiceProvider',
),