Commit 42ff9d0e by Taylor Otwell

Setup live debugger in app.

parent 129d06df
......@@ -90,6 +90,7 @@ return array(
'Illuminate\Cookie\CookieServiceProvider',
'Illuminate\Database\DatabaseServiceProvider',
'Illuminate\Encryption\EncryptionServiceProvider',
'Illuminate\Exception\LiveServiceProvider',
'Illuminate\Filesystem\FilesystemServiceProvider',
'Illuminate\Hashing\HashServiceProvider',
'Illuminate\Html\HtmlServiceProvider',
......
<?php
//
\ No newline at end of file
/*
|--------------------------------------------------------------------------
| Register Debug Console
|--------------------------------------------------------------------------
|
| In the local environment, we will attach the live debugger, which will
| allow you to view SQL queries and other logged information as it is
| taking place in this application via the "debug" Artisan command.
|
*/
App::attachDebugger();
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment