kotchuprik / laravel-pretty-dump
dev-master
2014-04-21 14:37 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-11-09 15:36:13 UTC
README
Installation
Add the laravel-pretty-dump
with the following composer command:
composer require "kotchuprik/laravel-pretty-dump"
Or add it to the composer.json
file:
"require": {
"laravel/framework": "4.1.*",
"kotchuprik/laravel-pretty-dump": "dev-master"
}
After adding the require, you must update the composer by executing composer update
.
Next, add the kotchuprik\PrettyDump\ServiceProvider
to the app/config/app.php
providers.
Usage
To use in code:
<?php $array = array('first' => 42, 'second' => 'another'); PrettyDump::dump($variable)
To use as the blade extension in views:
<div class="container"> @prettyDump($variable) </div>