Skip to content

A laravel package that provides nice looking variable dumps. Based on the dBug library and inspired by ColdFusion's cfdump

License

Notifications You must be signed in to change notification settings

crushthewebdev/laravel-dbug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DBug

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

Installation

This will walk you through how to set up the package.

  1. Add the following to your composer.json under require:

"dlcrush/laravel-dbug": "~1.1.0"

  1. Composer update

  2. Add the Service Provider to the providers array in app/config/app.php

'dlcrush\DBug\DBugServiceProvider',
  1. Add alias in app/config/app.php
'DBug'			  => 'dlcrush\DBug\Facades\DBug',

Usage

To dump out a variable, do the following:

DBug::DBug($var);

To dump and then die, do the following:

DBug::DBug($var, true);

About

A laravel package that provides nice looking variable dumps. Based on the dBug library and inspired by ColdFusion's cfdump

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages