Browse Source

Merge pull request #860 from stevefrost/develop

Updated the helper method dd()
Dayle Rees 12 years ago
parent
commit
4b97c28c6b
1 changed files with 4 additions and 1 deletions
  1. 4 1
      laravel/helpers.php

+ 4 - 1
laravel/helpers.php

@@ -34,7 +34,10 @@ function __($key, $replacements = array(), $language = null)
  */
 function dd($value)
 {
-	die(var_dump($value));
+	echo "<pre>";
+	var_dump($value);
+	echo "</pre>";
+	die;
 }
 
 /**